Add extra debug logging when starting a manager

master
Chip Senkbeil 9 months ago
parent 22f3c2dd76
commit 96abcefdc5
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

@ -31,6 +31,7 @@ impl Manager {
global_paths::UNIX_SOCKET_PATH.as_path()
}
});
debug!("Manager wants to use unix socket @ {:?}", socket_path);
// Ensure that the path to the socket exists
if let Some(parent) = socket_path.parent() {
@ -60,6 +61,7 @@ impl Manager {
} else {
global_paths::WINDOWS_PIPE_NAME.as_str()
});
debug!("Manager wants to use windows pipe @ {:?}", pipe_name);
let server = ManagerServer::new(self.config)
.verifier(Verifier::none())

Loading…
Cancel
Save