Adds skills and how to add them to the sheet
This commit is contained in:
@@ -16,15 +16,15 @@ class Logger {
|
||||
console.log(time.str + moduleName.str + text.str, ...time.params.concat(moduleName.params, text.params));
|
||||
}
|
||||
|
||||
static Err(str: string): void {
|
||||
static err(str: string): void {
|
||||
Logger.log(str, Color("orange"));
|
||||
}
|
||||
|
||||
static Warn(str: string): void {
|
||||
static warn(str: string): void {
|
||||
Logger.log(str, Color("yellow"));
|
||||
}
|
||||
|
||||
static Ok(str: string): void {
|
||||
static ok(str: string): void {
|
||||
Logger.log(str, Color("green"));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user