summaryrefslogtreecommitdiffstats
path: root/ogclient
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2021-11-18 10:29:46 +0100
committerJose M. Guisado <jguisado@soleta.eu>2021-11-18 10:29:46 +0100
commit3dfe54968b6e50d5b85391bd9302c2a4f0a21aa3 (patch)
tree423e8958b9ac5e34fa57a605b75c3934e77d3433 /ogclient
parentfd1f01d76b803f2b72165d4e79b516dc50bde52f (diff)
#1065 Use logging module instead of syslog
We can't use syslog if we want to execute ogClient in the Windows platform. Use the native logging library so we can attach different handlers depending on the mode ogClient is executing. Logging configuration is done via a python dict. There is a different dict for linux and windows. These dicts define the configuration of the root logger, handlers and formatters used. As of now, it is only expected to use the root logger for everything logging related. The root logger is obtained via: LOGGER = logging.getLogger() More info about handlers, formatters and loggers: https://docs.python.org/3/howto/logging.html Logging configuration is done at startup, just after parsing the json (knowing ogclient mode). If json parsing goes bad, ogclient will only print a message to stdout.
Diffstat (limited to 'ogclient')
-rwxr-xr-xogclient3
1 files changed, 3 insertions, 0 deletions
diff --git a/ogclient b/ogclient
index 528a0e4..4f8ca56 100755
--- a/ogclient
+++ b/ogclient
@@ -18,6 +18,7 @@ except ImportError:
from src.ogClient import *
+from src.log import configure_logging
def main():
@@ -36,6 +37,8 @@ def main():
if MODE != 'windows':
signal.signal(SIGPIPE, SIG_DFL)
+ configure_logging(MODE)
+
client = ogClient(config=CONFIG)
client.connect()
client.run()