diff options
Diffstat (limited to 'src/util/windows.rs')
| -rw-r--r-- | src/util/windows.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/windows.rs b/src/util/windows.rs index 8856aed..7003490 100644 --- a/src/util/windows.rs +++ b/src/util/windows.rs @@ -114,13 +114,13 @@ pub unsafe fn get_psql_service( }, other => { - tracing::warn!("unable to identify postgres service: {other} potential matches found"); + tracing::warn!(n_candidates = other, "unable to identify postgres service"); return Ok(None); }, } let svc = psql_services.remove(0); - tracing::debug!("identified postgres service: {}", svc.name); + tracing::debug!(name = %svc.name, "identified postgres service"); Ok(Some(svc)) } |
