Improve trace message for cached Python interpreter query (#14328)

This commit is contained in:
Zanie Blue 2025-06-29 09:40:29 -05:00 committed by GitHub
parent 41c218a89b
commit c0ebe6871d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1016,7 +1016,7 @@ impl InterpreterInfo {
Ok(cached) => { Ok(cached) => {
if cached.timestamp == modified { if cached.timestamp == modified {
trace!( trace!(
"Cached interpreter info for Python {}, skipping probing: {}", "Found cached interpreter info for Python {}, skipping query of: {}",
cached.data.markers.python_full_version(), cached.data.markers.python_full_version(),
executable.user_display() executable.user_display()
); );