summaryrefslogtreecommitdiff
path: root/src/pyssg/__main__.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2022-04-17 19:39:38 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2022-04-17 19:39:38 -0600
commit6bec182703885761699f6d53bc9034933b03197e (patch)
tree489ceb8a2223a9e1067e0eabfd91a62d1c7ec051 /src/pyssg/__main__.py
parentd2dfa337171fdad8ed48ce95e3b8f91e291423b7 (diff)
add initial logging capabilities
still need to add logging to rest of the program: builder, database, discovery, page, parser and rest of the pyssg (build part)
Diffstat (limited to 'src/pyssg/__main__.py')
-rw-r--r--src/pyssg/__main__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pyssg/__main__.py b/src/pyssg/__main__.py
index 9ed4d74..5213889 100644
--- a/src/pyssg/__main__.py
+++ b/src/pyssg/__main__.py
@@ -1,5 +1,7 @@
from .pyssg import main
+# since this is not used as a package, rather it's used as a command line tool,
+# this is never called because pyssg:main is called directly when running pyssg
if __name__ == '__main__':
main()