From 67f1f0d5320b639ae8dd53b2a546e3ac95543362 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Fri, 9 Jul 2021 13:31:49 +0800 Subject: [PATCH] Re-enable location warning --- src/pip/_internal/locations/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pip/_internal/locations/__init__.py b/src/pip/_internal/locations/__init__.py index 3acb51bc454..929c273bd61 100644 --- a/src/pip/_internal/locations/__init__.py +++ b/src/pip/_internal/locations/__init__.py @@ -51,7 +51,7 @@ def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool "\ndistutils: %s" "\nsysconfig: %s" ) - logger.debug(message, key, issue_url, old, new) + logger.warning(message, key, issue_url, old, new) return True