1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

Update documentation

This commit is contained in:
ivaosthu 2017-08-05 15:57:54 +02:00
parent f7e11b633b
commit 985d4eb245

View File

@ -50,10 +50,10 @@ A logger provider is a function which takes the name of a logger and returns a l
function consoleLoggerProvider (name) {
// do something with the name
return {
debug: console.debug.bind(console),
info: console.info.bind(console),
warn: console.warn.bind(console),
error: console.error.bind(console)
debug: console.log,
info: console.log,
warn: console.log,
error: console.error
};
}
```