[IMP] config: remove deprecated comment

It was intended to be replaced by log-handler at first but log-level is still
a very convenient way to manage the level of debug.
This commit is contained in:
Martin Trigaux 2015-01-06 18:03:58 +01:00
parent 96d1520a5e
commit ae34a1e93e
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ class configmanager(object):
levels = ['info', 'debug_rpc', 'warn', 'test', 'critical',
'debug_sql', 'error', 'debug', 'debug_rpc_answer', 'notset']
group.add_option('--log-level', dest='log_level', type='choice', choices=levels,
my_default='info', help='specify the level of the logging. Accepted values: ' + str(levels) + ' (deprecated option).')
my_default='info', help='specify the level of the logging. Accepted values: ' + str(levels))
parser.add_option_group(group)