mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 17:37:29 -07:00
Use configLogger for logging
This commit is contained in:
parent
1d1f8ac6af
commit
c736934fb3
1 changed files with 2 additions and 2 deletions
|
@ -166,12 +166,12 @@ async function init(): Promise<State> {
|
|||
machineLogger.info(`CPU: ${os.cpus().length}core`);
|
||||
machineLogger.info(`MEM: ${totalmem}GB (available: ${freemem}GB)`);
|
||||
|
||||
let configLogger = new Logger('Config');
|
||||
if (!fs.existsSync(`${__dirname}/../.config/config.yml`)) {
|
||||
Logger.error('Configuration not found');
|
||||
configLogger.error('Configuration not found');
|
||||
return State.failed;
|
||||
}
|
||||
|
||||
let configLogger = new Logger('Config');
|
||||
configLogger.info('Successfully loaded');
|
||||
configLogger.info(`maintainer: ${config.maintainer}`);
|
||||
|
||||
|
|
Loading…
Reference in a new issue