fix logger reference error

This commit is contained in:
AlecM33
2022-01-06 11:43:36 -05:00
parent bd863dd683
commit c0a18a6921
8 changed files with 12 additions and 10 deletions

View File

@@ -64,7 +64,7 @@ class ActiveGameRunner {
class Singleton {
constructor (logger) {
if (!Singleton.instance) {
logger.log('CREATING SINGLETON ACTIVE GAME RUNNER');
logger.info('CREATING SINGLETON ACTIVE GAME RUNNER');
Singleton.instance = new ActiveGameRunner(logger);
}
}