Skip to content

Commit e6635f9

Browse files
committed
Lower log level of agent communication issues
1 parent fa6cece commit e6635f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instana/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def full_request_response(self, url, method, o, body, header):
104104
# No need to show the initial 404s or timeouts. The agent
105105
# should handle those correctly.
106106
if not (type(e) is urllib2.HTTPError and e.code == 404):
107-
l.error("%s: full_request_response: %s" % (threading.current_thread().name, str(e)))
107+
l.debug("%s: full_request_response: %s" % (threading.current_thread().name, str(e)))
108108

109109
return (b, h)
110110

0 commit comments

Comments
 (0)