Add extra debug logging when starting a manager

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

Loading…
Cancel
Save