aboutsummaryrefslogtreecommitdiff
path: root/src/api/utils/Log.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/utils/Log.js')
-rw-r--r--src/api/utils/Log.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/api/utils/Log.js b/src/api/utils/Log.js
index 99d11e4..9a5efc9 100644
--- a/src/api/utils/Log.js
+++ b/src/api/utils/Log.js
@@ -3,27 +3,27 @@ const { dump } = require('dumper.js');
class Log {
static info(args) {
- if (this.checkIfArrayOrObject(args)) dump(args);
+ if (Log.checkIfArrayOrObject(args)) dump(args);
else console.log(args); // eslint-disable-line no-console
}
static success(args) {
- if (this.checkIfArrayOrObject(args)) dump(args);
+ if (Log.checkIfArrayOrObject(args)) dump(args);
else console.log(chalk.green(args)); // eslint-disable-line no-console
}
static warn(args) {
- if (this.checkIfArrayOrObject(args)) dump(args);
+ if (Log.checkIfArrayOrObject(args)) dump(args);
else console.log(chalk.yellow(args)); // eslint-disable-line no-console
}
static error(args) {
- if (this.checkIfArrayOrObject(args)) dump(args);
+ if (Log.checkIfArrayOrObject(args)) dump(args);
else console.log(chalk.red(args)); // eslint-disable-line no-console
}
static debug(args) {
- if (this.checkIfArrayOrObject(args)) dump(args);
+ if (Log.checkIfArrayOrObject(args)) dump(args);
else console.log(chalk.gray(args)); // eslint-disable-line no-console
}