aboutsummaryrefslogtreecommitdiff
path: root/examples/example2/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example2/main.py')
-rw-r--r--examples/example2/main.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/example2/main.py b/examples/example2/main.py
new file mode 100644
index 0000000..12b8343
--- /dev/null
+++ b/examples/example2/main.py
@@ -0,0 +1,13 @@
+import logging
+import sys
+
+import library1
+
+logging.basicConfig(stream=sys.stdout, level=logging.DEBUG)
+logger = logging.getLogger(__name__)
+
+# Uncomment below to mute Library1's debug
+# logging.getLogger("library1").setLevel(logging.INFO)
+library1.foo()
+
+logger.debug("Main File")