We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a65fd38 commit 8950f6cCopy full SHA for 8950f6c
deps/find_libpython.py
@@ -297,10 +297,11 @@ def finding_libpython():
297
for path in candidate_paths():
298
logger.debug("Candidate: %s", path)
299
normalized = normalize_path(path)
300
- logger.debug("Normalized: %s", normalized)
301
if normalized:
302
logger.debug("Found: %s", normalized)
303
yield normalized
+ else:
304
+ logger.debug("Not found.")
305
306
307
def find_libpython():
@@ -328,7 +329,9 @@ def cli_find_libpython(cli_op, verbose):
328
329
# error.
330
331
if verbose:
- logging.basicConfig(level=logging.DEBUG)
332
+ logging.basicConfig(
333
+ format="%(levelname)s %(message)s",
334
+ level=logging.DEBUG)
335
336
if cli_op == "list-all":
337
print_all(finding_libpython())
0 commit comments