Skip to content

Commit

Permalink
Merge pull request #249 from kmyk/issue/244
Browse files Browse the repository at this point in the history
#244: change the level of redundant log in AtCoder
  • Loading branch information
kmyk authored Jan 20, 2019
2 parents ee204bb + 20aa1f5 commit ae6ed6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onlinejudge/service/atcoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# see https://github.com/kmyk/online-judge-tools/issues/28 and https://github.com/kmyk/online-judge-tools/issues/232
def _request(*args, **kwargs):
resp = utils.request(*args, **kwargs)
log.status('AtCoder\'s server said "Content-Type: %s"', resp.headers.get('Content-Type', '(not sent)'))
log.debug('AtCoder\'s server said "Content-Type: %s"', resp.headers.get('Content-Type', '(not sent)'))
resp.encoding = 'UTF-8'
return resp

Expand Down

0 comments on commit ae6ed6e

Please sign in to comment.