1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Changed log formatting

This commit is contained in:
Michael Hollister 2024-11-19 14:49:27 -06:00
parent 51818cd41e
commit 670cab64e8

View file

@ -433,7 +433,9 @@ export default class Main {
}, },
}); });
Main.logger = log4js.getLogger(); Main.logger = log4js.getLogger();
Main.logger.info(`Starting application: ${app.name} (${app.getVersion()} - ${Updater.releaseChannel} - ${Updater.getChannelVersion()}) | ${app.getAppPath()}`); Main.logger.info(`Starting application: ${app.name} | ${app.getAppPath()}`);
Main.logger.info(`Version: ${app.getVersion()}`);
Main.logger.info(`Release channel: ${Updater.releaseChannel} - ${Updater.getChannelVersion()}`);
Main.logger.info(`OS: ${process.platform} ${process.arch}`); Main.logger.info(`OS: ${process.platform} ${process.arch}`);
if (isUpdating) { if (isUpdating) {