diff options
author | Yun Huang <yun.huang@windriver.com> | 2018-03-15 16:15:11 +0800 |
---|---|---|
committer | Yun Huang <yun.huang@windriver.com> | 2018-03-15 16:15:11 +0800 |
commit | cabc350593488b32980bd3310754018e99a48945 (patch) | |
tree | 8ca2026d153a2f849a93079ee81012705fcb4bb9 /windriver/titanium_cloud/pub | |
parent | 1bf84e64ce12d1e34fe5d72d6fc0411aed20cf26 (diff) |
Enable AOP for titanium cloud logging
Change-Id: Id441583c85845a71614577046f0c5b062e09580d
Issue-ID: MULTICLOUD-177
Signed-off-by: Yun Huang <yun.huang@windriver.com>
Diffstat (limited to 'windriver/titanium_cloud/pub')
-rw-r--r-- | windriver/titanium_cloud/pub/config/log.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/windriver/titanium_cloud/pub/config/log.yml b/windriver/titanium_cloud/pub/config/log.yml new file mode 100644 index 00000000..7dab297b --- /dev/null +++ b/windriver/titanium_cloud/pub/config/log.yml @@ -0,0 +1,34 @@ +version: 1 +disable_existing_loggers: False + +loggers: + titanium_cloud: + handlers: [titanium_cloud_handler] + level: "DEBUG" + propagate: False + newton_base: + handlers': [titanium_cloud_handler] + level: "DEBUG" + propagate: False + common: + handlers: [titanium_cloud_handler] + level: "DEBUG" + propagate: False +handlers: + titanium_cloud_handler: + level: "DEBUG" + class: "logging.handlers.RotatingFileHandler" + filename: "/var/log/onap/multicloud/openstack/windriver/titanium_cloud.log" + formatter: "mdcFormat" + maxBytes: 1024*1024*50 + backupCount: 10 +formatters: + standard: + format: "%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s" + mdcFormat: + format: "%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:[%(mdc)s]: %(message)s" + mdcfmt: "{requestID}" + datefmt: "%Y-%m-%d %H:%M:%S" + (): onaplogging.mdcformatter.MDCFormatter + + |