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