From 0acc656dda92fde305f91a61643f1b3facf1453c Mon Sep 17 00:00:00 2001 From: arcan1s Date: Thu, 14 May 2015 10:09:19 +0300 Subject: [PATCH] update ipython config --- ipython_config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ipython_config.py b/ipython_config.py index b283114..3d9ee0d 100644 --- a/ipython_config.py +++ b/ipython_config.py @@ -544,3 +544,8 @@ c = get_config() c.InteractiveShellApp.exec_lines = [] c.InteractiveShellApp.exec_lines.append('%load_ext autoreload') c.InteractiveShellApp.exec_lines.append('%autoreload 2') +# logging +c.InteractiveShellApp.exec_lines.append('import logging') +c.InteractiveShellApp.exec_lines.append('logging.basicConfig(level = logging.DEBUG)') +# requests +c.InteractiveShellApp.exec_lines.append('import requests')