Consistently write log messages with capitalized first word (#11111)

This commit is contained in:
Zanie Blue 2025-01-30 12:56:46 -06:00 committed by GitHub
parent ee31e1f11b
commit 5c0fdfd7ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 47 additions and 47 deletions

View file

@ -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),