mirror of
https://git.stamm.me/OpenServer/NodeLogging.git
synced 2024-11-14 22:51:03 +00:00
Fixing wrong logging type on warning
This commit is contained in:
parent
c175cc924c
commit
c47178b843
@ -59,7 +59,7 @@ export class Logging {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static warning(...message: any[]) {
|
static warning(...message: any[]) {
|
||||||
Logging.message(LoggingTypes.Log, message);
|
Logging.message(LoggingTypes.Warning, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
static logWithCustomColors(type: LoggingTypes, colors: string, ...message: any[]) {
|
static logWithCustomColors(type: LoggingTypes, colors: string, ...message: any[]) {
|
||||||
|
Loading…
Reference in New Issue
Block a user