summaryrefslogtreecommitdiffstats
path: root/cfg
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2022-06-06 14:45:41 +0200
committerJose M. Guisado <jguisado@soleta.eu>2022-06-08 10:27:06 +0200
commit30fdcceea3efbd264b00d78fb0f86fd5a2ff8831 (patch)
treece0f5c1cf19fd19049ee5d51bdb8137c1bc974b2 /cfg
parent1ab981a539f3553021b3cf1642619338f2782af1 (diff)
src: improve logging
Adds new logging handler redirecting messages to the log file located in the Samba shared directory (applies to live mode clients, i.e: ogLive) Parses log level configuration from ogclient.json. See: { "opengnsys": { ... "log": "INFO", ... } ... } Adds --debug option to set root logger level to DEBUG when starting ogClient. Overrides log level from config file. In addition: - Replaces any occurence of print with a corresponding logging function. - Unsets log level for handlers, use root logger level instead. - Default level for root logger is INFO. - Replaces level from response log messages to debug (ogRest)
Diffstat (limited to 'cfg')
-rw-r--r--cfg/ogclient.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/cfg/ogclient.json b/cfg/ogclient.json
index 1a43d1b..b1f1f43 100644
--- a/cfg/ogclient.json
+++ b/cfg/ogclient.json
@@ -2,7 +2,7 @@
"opengnsys": {
"ip": "127.0.0.1",
"port": 8889,
- "log": "DEBUG",
+ "log": "INFO",
"mode": "live",
"url": "https://127.0.0.1/opengnsys/varios/menubrowser.php",
"url_log": "http://localhost/cgi-bin/httpd-log.sh"