set log level from config file #798

Closed
imrehg wants to merge 2 commits from loglevel into master
2 changed files with 6 additions and 2 deletions

View File

@ -24,7 +24,9 @@ import helper_startup
helper_startup.loadConfig() helper_startup.loadConfig()
# TODO(xj9): Get from a config file. # TODO(xj9): Get from a config file.
log_level = 'DEBUG' possible_log_levels = ['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL']
config_log_level = shared.config.get('bitmessagesettings', 'loglevel').upper()
log_level = config_log_level if config_log_level in possible_log_levels else 'DEBUG'
def configureLogging(): def configureLogging():
logging.config.dictConfig({ logging.config.dictConfig({

View File

@ -34,7 +34,9 @@ import shared
from helper_sql import * from helper_sql import *
config = ConfigParser.SafeConfigParser() config = ConfigParser.SafeConfigParser(
defaults={'loglevel':'DEBUG'
})
myECCryptorObjects = {} myECCryptorObjects = {}
MyECSubscriptionCryptorObjects = {} MyECSubscriptionCryptorObjects = {}
myAddressesByHash = {} #The key in this dictionary is the RIPE hash which is encoded in an address and value is the address itself. myAddressesByHash = {} #The key in this dictionary is the RIPE hash which is encoded in an address and value is the address itself.