Skip to content

Commit

Permalink
Merge pull request #48 from canvas-medical/jw-log-fix
Browse files Browse the repository at this point in the history
Fixes log statement.
  • Loading branch information
jrwils authored May 16, 2024
2 parents 0bcd448 + 3d1f8b3 commit dfae13d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin_runner/plugin_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def load_or_reload_plugin(path: pathlib.Path) -> None:
try:
manifest_json = json.loads(manifest_json)
except Exception as e:
log.warning(f'Unable to load plugin "{name}":', e)
log.warning(f'Unable to load plugin "{name}": {e}')
return

secrets_file = path / SECRETS_FILE_NAME
Expand Down

0 comments on commit dfae13d

Please sign in to comment.