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
5 changed files with 47 additions and 47 deletions
+1 -1
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),