Skip to content

Commit

Permalink
Include identifier in warning log
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy committed Mar 27, 2024
1 parent a587669 commit 07cc3bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/ayon_core/pipeline/create/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -1791,8 +1791,8 @@ def _reset_creator_plugins(self):
creator_identifier = creator_class.identifier
if creator_identifier in creators:
self.log.warning(
"Duplicated Creator identifier. Using first and "
"skipping following: {}".format(str(creator_class))
"Duplicate Creator identifier: '%s'. Using first Creator "
"and skipping: %s", creator_identifier, creator_class
)
continue

Expand Down

0 comments on commit 07cc3bb

Please sign in to comment.