Update log messages
This commit is contained in:
parent
b03987290c
commit
87cc5f790c
2 changed files with 2 additions and 2 deletions
|
@ -95,6 +95,7 @@ async function workerMain() {
|
||||||
async function init(): Promise<Config> {
|
async function init(): Promise<Config> {
|
||||||
Logger.info('Welcome to Misskey!');
|
Logger.info('Welcome to Misskey!');
|
||||||
|
|
||||||
|
(new Logger('Deps')).info(`Node.js ${process.version}`);
|
||||||
MachineInfo.show();
|
MachineInfo.show();
|
||||||
EnvironmentInfo.show();
|
EnvironmentInfo.show();
|
||||||
new DependencyInfo().showAll();
|
new DependencyInfo().showAll();
|
||||||
|
|
|
@ -9,7 +9,6 @@ export default class {
|
||||||
logger.info(`Hostname: ${os.hostname()}`);
|
logger.info(`Hostname: ${os.hostname()}`);
|
||||||
logger.info(`Platform: ${process.platform}`);
|
logger.info(`Platform: ${process.platform}`);
|
||||||
logger.info(`Architecture: ${process.arch}`);
|
logger.info(`Architecture: ${process.arch}`);
|
||||||
logger.info(`Node.js: ${process.version}`);
|
|
||||||
logger.info(`CPU: ${os.cpus().length} core`);
|
logger.info(`CPU: ${os.cpus().length} core`);
|
||||||
logger.info(`MEM: ${totalmem}GB (available: ${freemem}GB)`);
|
logger.info(`MEM: ${totalmem}GB (available: ${freemem}GB)`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue