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