From f9738aa819769d0730fdb3be6e27a28b2169b9f5 2015-03-17 23:58:48 From: Matthias Bussonnier Date: 2015-03-17 23:58:48 Subject: [PATCH] Move “Using existing profile dir” from info to debug: Jessica B. Hamrick said: > It’s kind of annoying that it prints out every single time > I guess it’s not so bad when you’re just running the notebook > But for nbconvert you see it a lot --- diff --git a/IPython/core/application.py b/IPython/core/application.py index 0250ea3..9741baa 100644 --- a/IPython/core/application.py +++ b/IPython/core/application.py @@ -294,7 +294,7 @@ class BaseIPythonApplication(Application): self.log.fatal("Profile %r not found."%self.profile) self.exit(1) else: - self.log.info("Using existing profile dir: %r"%p.location) + self.log.debug("Using existing profile dir: %r"%p.location) else: location = self.config.ProfileDir.location # location is fully specified @@ -309,7 +309,7 @@ class BaseIPythonApplication(Application): self.log.fatal("Could not create profile directory: %r"%location) self.exit(1) else: - self.log.info("Creating new profile dir: %r"%location) + self.log.debug("Creating new profile dir: %r"%location) else: self.log.fatal("Profile directory %r not found."%location) self.exit(1)