Skip to content

Commit

Permalink
fix(logger): use valid syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Aug 18, 2022
1 parent 400ed4a commit 5d68081
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pv_visualizer/app/engine/proxymanager/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def property_yaml(property):
# i.e. views.RenderView.Representations
if property_definition["type"] == "proxy" and size != 1:
logger.info(
"Skip multi-proxy property",
"Skip multi-proxy property Proxy(%s)::Property(%s)",
property.GetParent().GetXMLName(),
property.GetXMLName(),
)
Expand Down
2 changes: 1 addition & 1 deletion pv_visualizer/app/engine/proxymanager/domain_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,6 @@ def domain_unknown(domain):

if class_name not in UNKNOWN_DOMAINS:
UNKNOWN_DOMAINS.add(class_name)
logger.info("domain_unknown::class", class_name)
logger.info("domain_unknown::class(%s)", class_name)

return {}

Large diffs are not rendered by default.

0 comments on commit 5d68081

Please sign in to comment.