diff options
author | selias <samelias@cisco.com> | 2017-10-05 12:19:55 +0200 |
---|---|---|
committer | selias <samelias@cisco.com> | 2017-10-05 16:41:04 +0200 |
commit | 08e35e37f7ad3394cea86c22ab7ffd990651c112 (patch) | |
tree | 25f0bd3ac2efdd72c184dc3850ada9bec1a61736 /resources/libraries/python/HTTPRequest.py | |
parent | 22fe84cf9058e189165802c68ce14b96e06e5947 (diff) |
HC Test: remove log check from HC startup
- remove log check from "Check Honeycomb Startup State" keyword
- fix workaround for ODL startup issue
- change log level for HttpRequestError so it doesn't clutter
log.html output
- update EXPECTED_FAILING tags for plugin-acl and routing suites
Change-Id: I7380d24801a6535bdf77505edada39ea2412e833
Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'resources/libraries/python/HTTPRequest.py')
-rw-r--r-- | resources/libraries/python/HTTPRequest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/HTTPRequest.py b/resources/libraries/python/HTTPRequest.py index 869078bca3..c4e73c25f2 100644 --- a/resources/libraries/python/HTTPRequest.py +++ b/resources/libraries/python/HTTPRequest.py @@ -73,7 +73,7 @@ class HTTPRequestError(Exception): self._msg = "{0}: {1}".format(self.__class__.__name__, msg) self._details = details if enable_logging: - logger.error(self._msg) + logger.info(self._msg) logger.debug(self._details) def __repr__(self): |