summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-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()