From c47178b843c6146393a75091bf3cd57b551415eb Mon Sep 17 00:00:00 2001 From: Fabian Stamm Date: Sat, 14 Apr 2018 10:42:48 +0000 Subject: [PATCH] Fixing wrong logging type on warning --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 2400c92..0ee399e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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[]) {