mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
use warning log instead of info
This commit is contained in:
parent
0957cffbfd
commit
3833adb30a
1 changed files with 2 additions and 2 deletions
|
|
@ -96,7 +96,7 @@ class BaseHandler(object):
|
|||
'!{} "{}" - You\'re missing required {} permissions'
|
||||
).format(self.type, label, str(MPE)))
|
||||
except AssertionError as ae:
|
||||
self.log.info((
|
||||
self.log.warning((
|
||||
'!{} "{}" - {}'
|
||||
).format(self.type, label, str(ae)))
|
||||
except NotImplementedError:
|
||||
|
|
@ -104,7 +104,7 @@ class BaseHandler(object):
|
|||
'{} "{}" - Register method is not implemented'
|
||||
).format(self.type, label))
|
||||
except PreregisterException as exc:
|
||||
self.log.info((
|
||||
self.log.warning((
|
||||
'{} "{}" - {}'
|
||||
).format(self.type, label, str(exc)))
|
||||
except Exception as e:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue