Prevent showing debugging log info inside ipython shell
Try doing this to set the logging level to WARNING
:
import logging
logging.getLogger().setLevel(logging.WARNING);
Any log messages of level INFO
or DEBUG
shouldn't appear anymore. You can also set the log level to logging.ERROR
. Then WARNING
messages won't appear as well.
Good luck!
https://github.com/ipython/ipython/issues/10946 looks like it's reported bug here.
In case you need debug logging in ipython, try to
logging.getLogger('parso.cache').disabled=True
logging.getLogger('parso.cache.pickle').disabled=True
and keep wait for parso update