1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00

Update documentation

This commit is contained in:
ivaosthu 2017-08-05 15:57:54 +02:00 committed by Ivar Conradi Østhus
parent e97a3820a2
commit e1a70bc22c

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
};
}
```