I am using winston for logging in my application. I have set the log level to info. I can see on my application console that only info or higher level logs are getting printed. But the same is not the case with application insights. I can see that even debug logs are doing into insights, I tried many approaches to avoid this but nothing is working.
and am using the below levels while creating the logger const levels = { error: 0, warn: 1, info: 2, http: 3, verbose: 4, debug: 5, silly: 6, }
Attached a snippet of logger where I am passing levels and level.
I am using botbuilder-applicationisights package, which is collecting all the logs. But, the issue is I want logs at info or higher level to be available in insights not debug levels