diff options
| author | MinchinWeb <w_minchin@hotmail.com> | 2021-07-06 21:31:54 -0600 |
|---|---|---|
| committer | MinchinWeb <w_minchin@hotmail.com> | 2021-07-08 23:26:33 -0600 |
| commit | 7eb730af78b0a5375e077c6f02f4440bc4578d48 (patch) | |
| tree | e2cdbb86a59eddd67db42b75308d3c5303770abf | |
| parent | a52922bfb597a4799cecff4641a5a2f9c40d99aa (diff) | |
| download | pelican-7eb730af78b0a5375e077c6f02f4440bc4578d48.tar.gz | |
Nicer logging of found writer
matches generator format
| -rw-r--r-- | pelican/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pelican/__init__.py b/pelican/__init__.py index e4ff92be..4014e971 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -222,7 +222,7 @@ class Pelican: writer = writers[0] - logger.debug("Found writer: %s", writer) + logger.debug("Found writer: %s (%s)" % (writer.__name__, writer.__module__)) return writer(self.output_path, settings=self.settings) |
