mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-30 14:58:37 +02:00
expose verbose level on Publish node
This commit is contained in:
parent
5ef33ef64c
commit
cd5beab5f4
2 changed files with 19 additions and 0 deletions
|
@ -213,6 +213,14 @@ class LogManager:
|
|||
|
||||
self.progressBar = False
|
||||
|
||||
def textToLevel(self, text):
|
||||
if text == 'critical': return logging.CRITICAL
|
||||
elif text == 'error': return logging.ERROR
|
||||
elif text == 'warning': return logging.WARNING
|
||||
elif text == 'info': return logging.INFO
|
||||
elif text == 'debug': return logging.DEBUG
|
||||
else: return logging.NOTSET
|
||||
|
||||
|
||||
runningProcesses = {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue