summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py25
1 files changed, 13 insertions, 12 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 3464d66f..351992f2 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -366,18 +366,19 @@ class Coverage(object):
# The user may want to debug things, show info if desired.
wrote_any = False
- if self.debug.should('config'):
- config_info = sorted(self.config.__dict__.items())
- self.debug.write_formatted_info("config", config_info)
- wrote_any = True
-
- if self.debug.should('sys'):
- self.debug.write_formatted_info("sys", self.sys_info())
- for plugin in self.plugins:
- header = "sys: " + plugin._coverage_plugin_name
- info = plugin.sys_info()
- self.debug.write_formatted_info(header, info)
- wrote_any = True
+ with self.debug.without_callers():
+ if self.debug.should('config'):
+ config_info = sorted(self.config.__dict__.items())
+ self.debug.write_formatted_info("config", config_info)
+ wrote_any = True
+
+ if self.debug.should('sys'):
+ self.debug.write_formatted_info("sys", self.sys_info())
+ for plugin in self.plugins:
+ header = "sys: " + plugin._coverage_plugin_name
+ info = plugin.sys_info()
+ self.debug.write_formatted_info(header, info)
+ wrote_any = True
if wrote_any:
self.debug.write_formatted_info("end", ())