1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

ftrace: demote info logging statement

This is the only info statement which is thus clobbering the "normal"
output of a client ueser for that devlib. This patch demote the logging
to debug level. The user can still log-report the output file which is also
an input parameter.

Signed-off-by: Patrick Bellasi <patrick.bellasi@arm.com>
This commit is contained in:
Patrick Bellasi 2016-02-23 15:52:42 +00:00
parent 78aa774e25
commit 32defe1ce3

View File

@ -240,7 +240,7 @@ class FtraceCollector(TraceCollector):
self.logger.debug("FTrace stats output [%s]...", outfile) self.logger.debug("FTrace stats output [%s]...", outfile)
with open(outfile, 'w') as fh: with open(outfile, 'w') as fh:
json.dump(function_stats, fh, indent=4) json.dump(function_stats, fh, indent=4)
self.logger.info("FTrace function stats save in [%s]", outfile) self.logger.debug("FTrace function stats save in [%s]", outfile)
return function_stats return function_stats