Skip to content

Commit

Permalink
Add extra debug logging when starting a manager
Browse files Browse the repository at this point in the history
  • Loading branch information
chipsenkbeil committed Jul 21, 2023
1 parent 22f3c2d commit 96abcef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cli/common/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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())
Expand Down

0 comments on commit 96abcef

Please sign in to comment.