Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(641)

Unified Diff: telemetry/telemetry/internal/util/atexit_with_log.py

Issue 2504653002: [Telemetry] Decrease end of test run logging. (Closed)
Patch Set: [Telemetry] Decrease of of test run logging. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | telemetry/telemetry/internal/util/ts_proxy_server.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: telemetry/telemetry/internal/util/atexit_with_log.py
diff --git a/telemetry/telemetry/internal/util/atexit_with_log.py b/telemetry/telemetry/internal/util/atexit_with_log.py
index 084b7897a29d808d4a1e86a99c4fbe9b84974070..6dd796706250833e84db9b262f6824bca9bd124b 100644
--- a/telemetry/telemetry/internal/util/atexit_with_log.py
+++ b/telemetry/telemetry/internal/util/atexit_with_log.py
@@ -7,9 +7,9 @@ import logging
def _WrapFunction(function):
def _wrapped_function(*args, **kwargs):
- logging.info('Try running %s', repr(function))
+ logging.debug('Try running %s', repr(function))
function(*args, **kwargs)
- logging.info('Did run %s', repr(function))
+ logging.debug('Did run %s', repr(function))
return _wrapped_function
def Register(function, *args, **kwargs):
« no previous file with comments | « no previous file | telemetry/telemetry/internal/util/ts_proxy_server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698