Browse Source

[config] allow logging level to be configurable (#47)

pull/49/head
slice 8 years ago
committed by Andrei Zbikowski
parent
commit
750e878ffd
  1. 1
      .gitignore
  2. 7
      disco/cli.py
  3. 3
      disco/client.py

1
.gitignore

@ -6,6 +6,7 @@ storage.json
*.dca *.dca
.eggs/ .eggs/
.cache/ .cache/
__pycache__
# Documentation stuff # Documentation stuff
docs/api/ docs/api/

7
disco/cli.py

@ -24,7 +24,7 @@ parser.add_argument('--manhole-bind', help='host:port for the manhole to bind to
parser.add_argument('--encoder', help='encoder for gateway data', default=None) parser.add_argument('--encoder', help='encoder for gateway data', default=None)
parser.add_argument('--run-bot', help='run a disco bot on this client', action='store_true', default=False) parser.add_argument('--run-bot', help='run a disco bot on this client', action='store_true', default=False)
parser.add_argument('--plugin', help='load plugins into the bot', nargs='*', default=[]) parser.add_argument('--plugin', help='load plugins into the bot', nargs='*', default=[])
parser.add_argument('--log-level', help='log level', default='info') parser.add_argument('--log-level', help='log level', default=None)
parser.add_argument('--http-bind', help='bind information for http server', default=None) parser.add_argument('--http-bind', help='bind information for http server', default=None)
@ -53,6 +53,8 @@ def disco_main(run=False):
config.manhole_enable = args.manhole config.manhole_enable = args.manhole
if args.manhole_bind: if args.manhole_bind:
config.manhole_bind = args.manhole_bind config.manhole_bind = args.manhole_bind
if args.log_level:
config.log_level = args.log_level
for k, v in six.iteritems(vars(args)): for k, v in six.iteritems(vars(args)):
if hasattr(config, k) and v is not None: if hasattr(config, k) and v is not None:
@ -67,8 +69,7 @@ def disco_main(run=False):
AutoSharder(config).run() AutoSharder(config).run()
return return
# TODO: make configurable setup_logging(level=getattr(logging, config.log_level.upper()))
setup_logging(level=getattr(logging, args.log_level.upper()))
client = Client(config) client = Client(config)

3
disco/client.py

@ -28,6 +28,8 @@ class ClientConfig(Config):
The total count of shards running. The total count of shards running.
max_reconnects : int max_reconnects : int
The maximum number of connection retries to make before giving up (0 = never give up). The maximum number of connection retries to make before giving up (0 = never give up).
log_level: str
The logging level to use.
manhole_enable : bool manhole_enable : bool
Whether to enable the manhole (e.g. console backdoor server) utility. Whether to enable the manhole (e.g. console backdoor server) utility.
manhole_bind : tuple(str, int) manhole_bind : tuple(str, int)
@ -42,6 +44,7 @@ class ClientConfig(Config):
shard_id = 0 shard_id = 0
shard_count = 1 shard_count = 1
max_reconnects = 5 max_reconnects = 5
log_level = 'info'
manhole_enable = False manhole_enable = False
manhole_bind = ('127.0.0.1', 8484) manhole_bind = ('127.0.0.1', 8484)

Loading…
Cancel
Save