1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00
unleash.unleash/test/fixtures/no-logger.js
2019-08-27 23:10:33 +02:00

12 lines
222 B
JavaScript

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