summaryrefslogtreecommitdiff
path: root/tests/topotests/lib/topotest.py
diff options
context:
space:
mode:
authorMark Stapp <mjs@voltanet.io>2020-12-02 11:08:38 -0500
committerMark Stapp <mjs@voltanet.io>2020-12-02 11:08:38 -0500
commitc46de798de44a50e4951b58e4efcd1d20ebe2af4 (patch)
treee5bfe1be5ab5431838a76ad71ddddc2fd51d54a5 /tests/topotests/lib/topotest.py
parent6ee4440e66bd4bcbe39ce9966aabd3d81535e0b0 (diff)
tests: quiet noisy error log about asan files
Turn a noisy error log into a debug - it's just reporting that we're _looking_ for asan output. Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'tests/topotests/lib/topotest.py')
-rw-r--r--tests/topotests/lib/topotest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py
index c81ae23a2e..20d60ebbef 100644
--- a/tests/topotests/lib/topotest.py
+++ b/tests/topotests/lib/topotest.py
@@ -990,7 +990,7 @@ def checkAddressSanitizerError(output, router, component, logdir=""):
# No Address Sanitizer Error in Output. Now check for AddressSanitizer daemon file
if logdir:
filepattern=logdir+"/"+router+"/"+component+".asan.*"
- sys.stderr.write("Log check for %s on %s, pattern %s\n" % (component, router, filepattern))
+ logger.debug("Log check for %s on %s, pattern %s\n" % (component, router, filepattern))
for file in glob.glob(filepattern):
with open(file, "r") as asanErrorFile:
asanError=asanErrorFile.read()