Kill off dead code.

This commit is contained in:
James Muscat 2015-04-04 00:33:56 +01:00
parent 608ff49723
commit 4f4ee10a98

View File

@ -9,8 +9,6 @@ from eddn import __version__ as version
EDDN_VERSION = version
# import logging.config
###############################################################################
# Relay settings
###############################################################################
@ -33,39 +31,3 @@ GATEWAY_JSON_SCHEMAS = {
"http://schemas.elite-markets.net/eddn/commodity/1": "../schemas/commodity-v0.1.json",
"http://schemas.elite-markets.net/eddn/commodity/1/test": "../schemas/commodity-v0.1.json"
}
###############################################################################
# Logging Settings
###############################################################################
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
},
'simple': {
'format': '%(name)s -- %(levelname)s -- %(asctime)s: %(message)s'
},
},
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'simple'
},
'null': {
'level': 'DEBUG',
'class': 'logging.NullHandler',
},
},
'loggers': {
'': {
'handlers': ['console'],
'level': 'INFO',
'propagate': True,
},
},
}
# logging.config.dictConfig(LOGGING) # Sigh - this is Python 2.7 only