Skip to content

Commit

Permalink
add AYON_LOG_NO_COLORS to 1 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph HENRY committed Nov 7, 2024
1 parent 0360cf7 commit 7c23271
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/ayon_nuke/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def add_implementation_envs(self, env, _app):

# Set default values if are not already set via settings
defaults = {
"LOGLEVEL": "DEBUG"
"LOGLEVEL": "DEBUG",
"AYON_LOG_NO_COLORS": "1",
}
for key, value in defaults.items():
if not env.get(key):
Expand All @@ -71,4 +72,4 @@ def get_launch_hook_paths(self, app):
]

def get_workfile_extensions(self):
return [".nk"]
return [".nk"]

0 comments on commit 7c23271

Please sign in to comment.