diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index 4ed411ec1..13c344367 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -207,6 +207,7 @@ class OpenLP(QtGui.QApplication): else: return QtGui.QApplication.event(self, event) + def set_up_logging(log_path): """ Setup our logging using log_path @@ -217,6 +218,9 @@ def set_up_logging(log_path): logfile.setFormatter(logging.Formatter( u'%(asctime)s %(name)-55s %(levelname)-8s %(message)s')) log.addHandler(logfile) + if log.isEnabledFor(logging.DEBUG): + print 'Logging to:', filename + def main(args=None): """ @@ -247,7 +251,6 @@ def main(args=None): qt_args = [] if options.loglevel.lower() in ['d', 'debug']: log.setLevel(logging.DEBUG) - print 'Logging to:', filename elif options.loglevel.lower() in ['w', 'warning']: log.setLevel(logging.WARNING) else: