소스 검색

Don't log the full debug line when sending a lot of data.

tags/v0.3
Ben Kurtovic 9 년 전
부모
커밋
48a14ee3ed
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      earwigbot/wiki/site.py

+ 2
- 0
earwigbot/wiki/site.py 파일 보기

@@ -232,6 +232,8 @@ class Site(object):
url, data = self._build_api_query(params, ignore_maxlag, no_assert)
if "lgpassword" in params:
self._logger.debug("{0} -> <hidden>".format(url))
elif len(data) > 1000:
self._logger.debug("{0} -> {1}...".format(url, data[:997]))
else:
self._logger.debug("{0} -> {1}".format(url, data))



불러오는 중...
취소
저장