Преглед изворни кода

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))



Loading…
Откажи
Сачувај