1
0
mirror of https://git.stamm.me/OpenServer/NodeLogging.git synced 2024-11-14 17:21:04 +00:00

Fixing wrong logging type on warning

This commit is contained in:
Fabian Stamm 2018-04-14 10:42:48 +00:00
parent c175cc924c
commit c47178b843

View File

@ -59,7 +59,7 @@ export class Logging {
}
static warning(...message: any[]) {
Logging.message(LoggingTypes.Log, message);
Logging.message(LoggingTypes.Warning, message);
}
static logWithCustomColors(type: LoggingTypes, colors: string, ...message: any[]) {