Mirror of
forum.nim-lang.org
index
4352 :: How-to silent the message "Jester is making jokes at..."
[2018-11-03T21:09:30+01:00]
View Orginal
alfrednewman
(orginal)
[2018-11-03T21:09:30+01:00]
view original
Hallo, I'm running a Jester application and I would like to silent the message
"
Jester is making jokes at...
"
. Is it possible? Thanks in advance
dom96
(orginal)
[2018-11-04T01:22:37+01:00]
view original
This should do it:
logging
.
setLogFilter
(
lvlNotice
)
Run
ggibson
(orginal)
[2018-12-10T05:09:50+01:00]
view original
Hmm, how might my attempt at this go wrong? I have
logging.setLogFilter(lvlNotice)
at the top after
import logging
but still jester is showing INFO level logging. I can make other changes and they show up okay.