We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5723ed6 commit cbd0c2aCopy full SHA for cbd0c2a
1 file changed
src/debugpy/common/log.py
@@ -304,6 +304,7 @@ def report_paths(get_paths, label=None):
304
swallow_exception(
305
"Error evaluating {0}",
306
repr(expr) if expr else util.srcnameof(get_paths),
307
+ level="info",
308
)
309
return
310
@@ -360,7 +361,9 @@ def report_paths(get_paths, label=None):
360
361
for pkg in importlib_metadata.distributions():
362
report(" {0}=={1}\n", pkg.name, pkg.version)
363
except Exception: # pragma: no cover
- swallow_exception("Error while enumerating installed packages.")
364
+ swallow_exception(
365
+ "Error while enumerating installed packages.", level="info"
366
+ )
367
368
return "".join(result).rstrip("\n")
369
0 commit comments