This commit is contained in:
Aya Morisawa 2016-12-29 20:07:05 +09:00
parent 7c0d22945c
commit bb57937327

View file

@ -160,9 +160,9 @@ async function init(): Promise<State> {
// Get machine info
const totalmem = (os.totalmem() / 1024 / 1024 / 1024).toFixed(1);
const freemem = (os.freemem() / 1024 / 1024 / 1024).toFixed(1);
log('Info', `MACHINE: ${os.hostname()}`);
log('Info', `MACHINE: CPU: ${os.cpus().length}core`);
log('Info', `MACHINE: MEM: ${totalmem}GB (available: ${freemem}GB)`);
log('Info', `${os.hostname()}`, 'Machine');
log('Info', `CPU: ${os.cpus().length}core`, 'Machine');
log('Info', `MEM: ${totalmem}GB (available: ${freemem}GB)`, 'Machine');
if (!fs.existsSync(`${__dirname}/../.config/config.yml`)) {
log('Error', 'Configuration not found');