mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Update tests/integration/hosts/maya/input/startup/userSetup.py
Co-authored-by: Roy Nieterau <roy_nieterau@hotmail.com>
This commit is contained in:
parent
5b3c6b8cfd
commit
b92bc4b202
1 changed files with 4 additions and 4 deletions
|
|
@ -8,13 +8,13 @@ import pyblish.util
|
|||
|
||||
def setup_pyblish_logging():
|
||||
log = logging.getLogger("pyblish")
|
||||
hnd = logging.StreamHandler(sys.stdout)
|
||||
fmt = logging.Formatter(
|
||||
handler = logging.StreamHandler(sys.stdout)
|
||||
formatter = logging.Formatter(
|
||||
"pyblish (%(levelname)s) (line: %(lineno)d) %(name)s:"
|
||||
"\n%(message)s"
|
||||
)
|
||||
hnd.setFormatter(fmt)
|
||||
log.addHandler(hnd)
|
||||
handler.setFormatter(formatter)
|
||||
log.addHandler(handler)
|
||||
|
||||
|
||||
def _run_publish_test_deferred():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue