diff options
| author | Mark Stapp <mjs@voltanet.io> | 2020-12-02 11:08:38 -0500 |
|---|---|---|
| committer | Mark Stapp <mjs@voltanet.io> | 2020-12-02 11:08:38 -0500 |
| commit | c46de798de44a50e4951b58e4efcd1d20ebe2af4 (patch) | |
| tree | e5bfe1be5ab5431838a76ad71ddddc2fd51d54a5 /tests/topotests/lib/topotest.py | |
| parent | 6ee4440e66bd4bcbe39ce9966aabd3d81535e0b0 (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.py | 2 |
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() |
