How do you access the python Bokeh logger?
I tried using the basicConfig wrapper but it does not seem to work.
from bokeh.util import logconfig
logconfig.basicConfig(level=logging.DEBUG, filename="output.log")
Anyone had luck redirecting the server logs to a file?
I also tried creating another standard logger without using Bokeh (e.g. with logging module), but it does not work either.
Using Bokeh 0.12.6 (latest)