| 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):
|
|
|