Adjusting logging level of certain messages

This commit is contained in:
Amjad Mashaal
2016-06-10 06:33:11 +02:00
parent b512808750
commit 7f9a8f0f08
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ class Reporter(object):
"""
assert self.HIGH_PRIORITY <= priority <= self.LOW_PRIORITY
self.messages.put(self._msg_type(priority, msg, on_crash))
logger.info("Reporting to user: %s", msg)
logger.debug("Reporting to user: %s", msg)
def atexit_print_messages(self, pid=None):
"""Function to be registered with atexit to print messages.