mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
Update documentation
This commit is contained in:
parent
e97a3820a2
commit
e1a70bc22c
@ -50,10 +50,10 @@ A logger provider is a function which takes the name of a logger and returns a l
|
|||||||
function consoleLoggerProvider (name) {
|
function consoleLoggerProvider (name) {
|
||||||
// do something with the name
|
// do something with the name
|
||||||
return {
|
return {
|
||||||
debug: console.debug.bind(console),
|
debug: console.log,
|
||||||
info: console.info.bind(console),
|
info: console.log,
|
||||||
warn: console.warn.bind(console),
|
warn: console.log,
|
||||||
error: console.error.bind(console)
|
error: console.error
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user