When I running the following inside IPython Notebook I don\'t see any output:
import logging logging.basicConfig(level=logging.DEBUG) logging.debug(\"test\")
If you still want to use basicConfig, reload the logging module like this
basicConfig
from importlib import reload # Not needed in Python 2 import logging reload(logging) logging.basicConfig(format='%(asctime)s %(levelname)s:%(message)s', level=logging.DEBUG, datefmt='%I:%M:%S')