summaryrefslogtreecommitdiff
path: root/python/logging.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/logging.py')
-rwxr-xr-xpython/logging.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/python/logging.py b/python/logging.py
new file mode 100755
index 0000000..84e2134
--- /dev/null
+++ b/python/logging.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python3.9
+
+import logging
+import sys
+
+logging.basicConfig(stream=sys.stdout)
+logger = logging.getLogger()
+logger.warning("test")
+try:
+ a = []
+ a[1] = 2
+except Exception as e:
+ logger.exception(e)