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'
|
'!{} "{}" - You\'re missing required {} permissions'
|
||||||
).format(self.type, label, str(MPE)))
|
).format(self.type, label, str(MPE)))
|
||||||
except AssertionError as ae:
|
except AssertionError as ae:
|
||||||
self.log.info((
|
self.log.warning((
|
||||||
'!{} "{}" - {}'
|
'!{} "{}" - {}'
|
||||||
).format(self.type, label, str(ae)))
|
).format(self.type, label, str(ae)))
|
||||||
except NotImplementedError:
|
except NotImplementedError:
|
||||||
|
|
@ -104,7 +104,7 @@ class BaseHandler(object):
|
||||||
'{} "{}" - Register method is not implemented'
|
'{} "{}" - Register method is not implemented'
|
||||||
).format(self.type, label))
|
).format(self.type, label))
|
||||||
except PreregisterException as exc:
|
except PreregisterException as exc:
|
||||||
self.log.info((
|
self.log.warning((
|
||||||
'{} "{}" - {}'
|
'{} "{}" - {}'
|
||||||
).format(self.type, label, str(exc)))
|
).format(self.type, label, str(exc)))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue