aboutsummaryrefslogtreecommitdiffstats
path: root/tutorials/ApacheCNF/automation/onap_settings.py
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2022-10-21 10:36:42 +0200
committerLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2022-10-21 14:02:36 +0200
commit0c85ee9fc85870f8ba39befc63b8351301d4842f (patch)
treee08524866f18783ed711d2d11f0586330c65436a /tutorials/ApacheCNF/automation/onap_settings.py
parente7121fda9d1d39ee02af43e78e0d93a93e6de94f (diff)
[APACHECNF] Various updates of the demo
Issue-ID: INT-2164 Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> Change-Id: I1ce506db959d5fd865898422cb018b1428ec41ac
Diffstat (limited to 'tutorials/ApacheCNF/automation/onap_settings.py')
-rw-r--r--tutorials/ApacheCNF/automation/onap_settings.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/tutorials/ApacheCNF/automation/onap_settings.py b/tutorials/ApacheCNF/automation/onap_settings.py
index e0bad35d..414685e0 100644
--- a/tutorials/ApacheCNF/automation/onap_settings.py
+++ b/tutorials/ApacheCNF/automation/onap_settings.py
@@ -24,6 +24,39 @@
# ONAP SERVICES URLS #
# #
######################
+import logging.config
+
+LOG_CONFIG = {
+ "version": 1,
+ "disable_existing_loggers": False,
+ "formatters": {
+ "default": {
+ "class": "logging.Formatter",
+ "format": "%(asctime)s %(levelname)s %(lineno)d:%(filename)s(%(process)d) - %(message)s"
+ }
+ },
+ "handlers": {
+ "console": {
+ "level": "DEBUG",
+ "class": "logging.StreamHandler",
+ "formatter": "default"
+ },
+ "file": {
+ "level": "DEBUG",
+ "class": "logging.FileHandler",
+ "formatter": "default",
+ "filename": "/tmp/pythonsdk.debug.log",
+ "mode": "w"
+ }
+ },
+ "root": {
+ "level": "DEBUG",
+ "handlers": ["console", "file"]
+ }
+}
+
+logging.config.dictConfig(LOG_CONFIG)
+
AAI_URL = "https://aai.api.sparky.simpledemo.onap.org:30233"
AAI_API_VERSION = "v23"