Fix ESLint errors

This commit is contained in:
Linus Groh
2019-10-27 12:28:29 +00:00
parent f0c4ba43cb
commit 418a2fe808
+2
View File
@@ -6,11 +6,13 @@ export const logLevels = {
ERROR: "ERROR",
};
/* eslint-disable no-console */
const logFunctions = {
[logLevels.INFO]: console.info,
[logLevels.WARNING]: console.warn,
[logLevels.ERROR]: console.error,
};
/* eslint-enable no-console */
const logColors = {
[logLevels.INFO]: "#0d66ba",