Fix missing warn in Loggers

This commit is contained in:
Nicolas Dextraze
2019-11-01 11:10:16 -07:00
parent 343eaa85df
commit 941f671ed2
2 changed files with 9 additions and 3 deletions

View File

@@ -1,7 +1,8 @@
function NoopLogger() {
}
NoopLogger.prototype.error = function() {};
NoopLogger.prototype.debug = function() {};
NoopLogger.prototype.info = function() {};
NoopLogger.prototype.warn = function() {};
NoopLogger.prototype.error = function() {};
module.exports = NoopLogger;
module.exports = NoopLogger;