Add more configurability to the logger.

This commit is contained in:
Oliver-Akins 2020-10-02 16:55:21 -06:00
parent bdc7bccfcc
commit 0fe1008196

View file

@ -18,7 +18,10 @@ import { ExecutiveConfirmation } from "./events/special/ExecutiveConfirmation";
import { InvestigateAffiliation } from "./events/special/InvestigateLoyalty/InvestigateAffiliation"; import { InvestigateAffiliation } from "./events/special/InvestigateLoyalty/InvestigateAffiliation";
export var log: Logger = new Logger({ export var log: Logger = new Logger({
displayFunctionName: true,
displayFilePath: `hidden`,
displayLogLevel: true, displayLogLevel: true,
name: `SecretHitler`,
}); });
export var active_games: {[key: string]: Game} = {}; export var active_games: {[key: string]: Game} = {};