mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 02:48:17 +00:00
Consistently write log messages with capitalized first word (#11111)
This commit is contained in:
parent
ee31e1f11b
commit
5c0fdfd7ce
5 changed files with 47 additions and 47 deletions
|
@ -55,7 +55,7 @@ pub(crate) enum LibcVersion {
|
|||
/// inspecting core binaries.
|
||||
pub(crate) fn detect_linux_libc() -> Result<LibcVersion, LibcDetectionError> {
|
||||
let ld_path = find_ld_path()?;
|
||||
trace!("ld path: {}", ld_path.user_display());
|
||||
trace!("Found `ld` path: {}", ld_path.user_display());
|
||||
|
||||
match detect_musl_version(&ld_path) {
|
||||
Ok(os) => return Ok(os),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue