From 9b7930b93d044378812e577405aae29bb445d2be Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 1 Feb 2013 10:39:16 -0500 Subject: Make ipapython.dogtag log requests at debug level, not info --- ipapython/dogtag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipapython/dogtag.py') diff --git a/ipapython/dogtag.py b/ipapython/dogtag.py index 1b428d20..ec3f2beb 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) -- cgit