Print pid to the logs

This commit is contained in:
Arthur Petukhovsky
2023-11-16 14:12:30 +00:00
committed by Arseny Sher
parent 71491dd467
commit 2f217f9ebd

View File

@@ -528,7 +528,9 @@ impl ClientInner {
rows.len()
))
} else {
Ok(rows[0].get(0))
let pid = rows[0].get(0);
info!(%pid, "got pid");
Ok(pid)
}
}
}