summaryrefslogtreecommitdiffstats
path: root/ipapython
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-02-01 10:39:16 -0500
committerRob Crittenden <rcritten@redhat.com>2013-02-01 13:45:03 -0500
commit9b7930b93d044378812e577405aae29bb445d2be (patch)
tree05eba6cbf8bae46266bc0fbcee359f6c570abd5d /ipapython
parent26c498736ec8eabb8dafbc090811c92c79a8c318 (diff)
downloadfreeipa-9b7930b93d044378812e577405aae29bb445d2be.tar.gz
freeipa-9b7930b93d044378812e577405aae29bb445d2be.tar.xz
freeipa-9b7930b93d044378812e577405aae29bb445d2be.zip
Make ipapython.dogtag log requests at debug level, not info
Diffstat (limited to 'ipapython')
-rw-r--r--ipapython/dogtag.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipapython/dogtag.py b/ipapython/dogtag.py
index 1b428d20e..ec3f2beb8 100644
--- a/ipapython/dogtag.py
+++ b/ipapython/dogtag.py
@@ -276,7 +276,7 @@ def _httplib_request(
if isinstance(host, unicode):
host = host.encode('utf-8')
uri = '%s://%s%s' % (protocol, ipautil.format_netloc(host, port), path)
- root_logger.info('request %r', uri)
+ root_logger.debug('request %r', uri)
root_logger.debug('request body %r', request_body)
try:
conn = connection_factory(host, port)