##// END OF EJS Templates
Move “Using existing profile dir” from info to debug:...
Matthias Bussonnier -
Show More
@@ -294,7 +294,7 b' class BaseIPythonApplication(Application):'
294 self.log.fatal("Profile %r not found."%self.profile)
294 self.log.fatal("Profile %r not found."%self.profile)
295 self.exit(1)
295 self.exit(1)
296 else:
296 else:
297 self.log.info("Using existing profile dir: %r"%p.location)
297 self.log.debug("Using existing profile dir: %r"%p.location)
298 else:
298 else:
299 location = self.config.ProfileDir.location
299 location = self.config.ProfileDir.location
300 # location is fully specified
300 # location is fully specified
@@ -309,7 +309,7 b' class BaseIPythonApplication(Application):'
309 self.log.fatal("Could not create profile directory: %r"%location)
309 self.log.fatal("Could not create profile directory: %r"%location)
310 self.exit(1)
310 self.exit(1)
311 else:
311 else:
312 self.log.info("Creating new profile dir: %r"%location)
312 self.log.debug("Creating new profile dir: %r"%location)
313 else:
313 else:
314 self.log.fatal("Profile directory %r not found."%location)
314 self.log.fatal("Profile directory %r not found."%location)
315 self.exit(1)
315 self.exit(1)
General Comments 0
You need to be logged in to leave comments. Login now