Skip to content

Commit

Permalink
add module file to debug output when scanning modules
Browse files Browse the repository at this point in the history
  • Loading branch information
thrau committed Jun 19, 2024
1 parent 8e8f376 commit a60f809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plux/build/discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def find_plugins(self) -> t.List[PluginSpec]:
plugins = list()

for module in self.modules:
LOG.debug("scanning module %s", module.__name__)
LOG.debug("scanning module %s, file=%s", module.__name__, module.__file__)
members = inspect.getmembers(module)

for member in members:
Expand Down

0 comments on commit a60f809

Please sign in to comment.