summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2018-08-06 09:12:27 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2018-08-06 09:12:27 +0800
commitf9005a14c880dc04c8d87c4c3fc69b5e3b8e5dc4 (patch)
tree9b1f6a0be967e1a72a5688942cd6c49517c9101f
parentdd9964d85cd94f1db4158e1774380a114e01ac77 (diff)
Fix log error when run vnflcm tests in windows
Change-Id: I6408540864651981d86eda35f364a4e8135bd6b7 Issue-ID: VFC-1014 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
-rw-r--r--lcm/lcm/settings.py74
1 files changed, 36 insertions, 38 deletions
diff --git a/lcm/lcm/settings.py b/lcm/lcm/settings.py
index 8dcb2b44..58473a25 100644
--- a/lcm/lcm/settings.py
+++ b/lcm/lcm/settings.py
@@ -14,6 +14,7 @@
import os
import sys
+import platform
import redisco
@@ -123,47 +124,44 @@ TIME_ZONE = 'UTC'
# https://docs.djangoproject.com/en/1.6/howto/static-files/
STATIC_URL = '/static/'
-#
-# LOGGING = {
-# 'version': 1,
-# 'disable_existing_loggers': True,
-# 'formatters': {
-# 'standard': {
-# 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
-# },
-# },
-# 'filters': {
-# },
-# 'handlers': {
-# 'lcm_handler': {
-# 'level': 'DEBUG',
-# 'class': 'logging.handlers.RotatingFileHandler',
-# 'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'),
-# 'formatter': 'standard',
-# 'maxBytes': 1024 * 1024 * 50,
-# 'backupCount': 5,
-# },
-# },
-#
-# 'loggers': {
-# 'lcm': {
-# 'handlers': ['lcm_handler'],
-# 'level': 'DEBUG',
-# 'propagate': False
-# },
-# }
-# }
-LOGGING_CONFIG = None
-# yaml configuration of logging
-LOGGING_FILE = os.path.join(BASE_DIR, 'lcm/log.yml')
-if 'test' in sys.argv:
- os.system('sed -i "s|/var/log/onap/vfc/gvnfm-vnflcm|/tmp|" %s' % LOGGING_FILE)
-config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
+if platform.system() == 'Windows' or 'test' in sys.argv:
+ LOGGING = {
+ 'version': 1,
+ 'disable_existing_loggers': True,
+ 'formatters': {
+ 'standard': {
+ 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
+ },
+ },
+ 'filters': {
+ },
+ 'handlers': {
+ 'lcm_handler': {
+ 'level': 'DEBUG',
+ 'class': 'logging.handlers.RotatingFileHandler',
+ 'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'),
+ 'formatter': 'standard',
+ 'maxBytes': 1024 * 1024 * 50,
+ 'backupCount': 5,
+ },
+ },
+
+ 'loggers': {
+ 'lcm': {
+ 'handlers': ['lcm_handler'],
+ 'level': 'DEBUG',
+ 'propagate': False
+ },
+ }
+ }
+else:
+ LOGGING_CONFIG = None
+ LOGGING_FILE = os.path.join(BASE_DIR, 'lcm/log.yml')
+ config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
-if 'test' in sys.argv:
- os.system('sed -i "s|/tmp|/var/log/onap/vfc/gvnfm-vnflcm|" %s' % LOGGING_FILE)
+if 'test' in sys.argv:
from lcm.pub.config import config
config.REG_TO_MSB_WHEN_START = False