From e07fd561d8426286dfeab16e7313b248fa709909 Mon Sep 17 00:00:00 2001 From: Nikolaus Sonnenschein Date: Wed, 15 Apr 2015 10:20:46 +0200 Subject: [PATCH] Replaced annoying print with logger.debug --- cameo/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cameo/util.py b/cameo/util.py index 2c8ac579c..f5b41f5bc 100644 --- a/cameo/util.py +++ b/cameo/util.py @@ -285,6 +285,6 @@ def in_ipnb(): elif 'notebook' in front_end.lower(): return True except Exception as e: - print("Cannot determine if running a notebook because of %s" % e) + logger.debug("Cannot determine if running a notebook because of %s" % e) return False return False