mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function noLoggerProvider() {
|
||
|
// do something with the name
|
||
|
return {
|
||
|
debug: () => {},
|
||
|
info: () => {},
|
||
|
warn: () => {},
|
||
|
error: () => {},
|
||
|
};
|
||
|
};
|