Logging seems to behave differently under ipython notebook vs. python
Python:
>>> import param
>>> param.Parameterized().warning('hi')
WARNING:root:Parameterized00002: hi
>>> param.Parameterized().message('hi')
INFO:root:Parameterized00003: hi
>>> param.parameterized.get_logger().isEnabledFor(param.parameterized.INFO)
True
In a notebook, however, I only get the warning message (not the info):

Logging seems to behave differently under ipython notebook vs. python
Python:
In a notebook, however, I only get the warning message (not the info):
