From 97103704eb4216c76eff69ca185294f624c1c9be Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Tue, 29 Oct 2019 15:35:08 +0100 Subject: [PATCH] Add function name into log_debug --- wo/core/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wo/core/logging.py b/wo/core/logging.py index bb6cbda..8e034f7 100644 --- a/wo/core/logging.py +++ b/wo/core/logging.py @@ -44,7 +44,7 @@ class Log: """ Logs debug messages into log file """ - self.app.log.debug(Log.HEADER + msg + Log.ENDC) + self.app.log.debug(Log.HEADER + msg + Log.ENDC + __name__) def wait(self, msg, end='\r', log=True): """