Skip to content

Commit

Permalink
Disabled logging of API requests in IRC API.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wessie committed Jun 1, 2014
1 parent c8844e9 commit e5ef702
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bot/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def announce(session):
def run_rpc_server(config, session):
funcs = [request_announce, announce]

server = JSONServer((config.host, config.port), encoding="utf8")
server = JSONServer((config.host, config.port),
encoding="utf8", logRequests=False)

for f in funcs:
wrapped = functools.wraps(f.server_side)
Expand Down

0 comments on commit e5ef702

Please sign in to comment.