Print pid to the logs

This commit is contained in:
Arthur Petukhovsky
2023-11-16 14:12:30 +00:00
parent 9ea8a744a3
commit f05f452dfd

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)
}
}
}