1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
unleash.unleash/test/fixtures/no-logger.js
2020-02-20 08:34:28 +01:00

12 lines
222 B
JavaScript

'use strict';
module.exports = function noLoggerProvider() {
// do something with the name
return {
debug: () => {},
info: () => {},
warn: () => {},
error: console.error,
};
};