mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
d01c9d2dac
This drops usage of finn-eslint rules as they are no longer maintained.
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
/* eslint-disable no-console */
|
|
|
|
'use strict';
|
|
|
|
module.exports = function noLoggerProvider() {
|
|
// do something with the name
|
|
return {
|
|
debug: () => {},
|
|
info: () => {},
|
|
warn: () => {},
|
|
error: console.error,
|
|
};
|
|
};
|