Skip to content

Commit

Permalink
fix(perf): don't interpolate string before logging
Browse files Browse the repository at this point in the history
Co-authored-by: Dariusz Duda <[email protected]>
  • Loading branch information
mattculler and dariuszd21 committed Feb 11, 2025
1 parent c38ad8f commit 80739d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion craft_application/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def _load_plugins(self) -> None:
for plugin_entry_point in metadata.entry_points(
group="craft_application_plugins.application"
):
logger.debug(f"Loading app plugin {plugin_entry_point.name}")
logger.debug("Loading app plugin %s", plugin_entry_point.name)
try:
app_plugin_module = plugin_entry_point.load()
app_plugin_module.configure(self)
Expand Down

0 comments on commit 80739d0

Please sign in to comment.