Skip to content

Commit a50cc8b

Browse files
committed
fix for non string log messages
1 parent 0d361a0 commit a50cc8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Pothos/Logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ def emit(self, record):
2020
logging.DEBUG:'DEBUG',
2121
logging.NOTSET:'NOTSET',
2222
}[record.levelno]
23-
self._logger.log(record.name, record.msg, level)
23+
self._logger.log(record.name, str(record.msg), level)

0 commit comments

Comments
 (0)