-
-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
Hi, when I set log.options.logHandler = myConsole and the call log.info("test") myConsole is not being invoked.
However the following 2 alternatives work fine:
log.console = myConsole and log = new LambdaLog({logHandler: myConsole})
I think this is because internally LambdaLog use the property console and that property is only set during the constructor.
I mention this because the documentation uses log.options.logHandler = myConsole
I'm using version 3.0.0
BTW the property options.logHandler it is not defined in the typescript types.
Thanks