Skip to content

Commit 350ed2a

Browse files
authored
fix: logger shouldn't warn for missing lib on UNIX (#787)
Missed one logger call. Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 5c35613 commit 350ed2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scikit_build_core/builder/sysconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def get_python_library(env: Mapping[str, str], *, abi3: bool = False) -> Path |
9797
if libpath.is_file():
9898
return libpath
9999

100-
logger.warning(
100+
log_func(
101101
"Can't find a Python library, got libdir={}, ldlibrary={}, multiarch={}, masd={}",
102102
libdir,
103103
ldlibrary,

0 commit comments

Comments
 (0)