From f2df9945c1cac35f5b5a3b39e6bfbe4ab694398b Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 13 Oct 2017 14:11:15 +0300 Subject: TEMP: log to /tmp/log to figure wtf is going on --- ick_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ick_controller.py') diff --git a/ick_controller.py b/ick_controller.py index ad8708f..855b6ea 100644 --- a/ick_controller.py +++ b/ick_controller.py @@ -57,7 +57,7 @@ def load_config(filename, defconf): logger = logging.getLogger() logger.setLevel(logging.DEBUG) -handler = logging.StreamHandler() +handler = logging.FileHandler('/tmp/ick.log') logger.addHandler(handler) logging.info('Starting ick controller main program') -- cgit v1.2.1