1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-22 21:01:36 +03:00

reduce log level of some diagnostics printed on startup

This commit is contained in:
Wez Furlong 2022-04-09 19:08:25 -07:00
parent bbb842c3e9
commit b162f6f1e2
2 changed files with 2 additions and 2 deletions

View File

@ -485,7 +485,7 @@ impl Publish {
Ok(true) Ok(true)
} }
Err(err) => { Err(err) => {
log::warn!( log::trace!(
"while attempting to ask existing instance to spawn: {:#}", "while attempting to ask existing instance to spawn: {:#}",
err err
); );

View File

@ -44,7 +44,7 @@ impl LocalListener {
/// that prevent other users from manipulating its contents. /// that prevent other users from manipulating its contents.
fn safely_create_sock_path(unix_dom: &UnixDomain) -> anyhow::Result<UnixListener> { fn safely_create_sock_path(unix_dom: &UnixDomain) -> anyhow::Result<UnixListener> {
let sock_path = &unix_dom.socket_path(); let sock_path = &unix_dom.socket_path();
log::info!("setting up {}", sock_path.display()); log::trace!("setting up {}", sock_path.display());
let sock_dir = sock_path let sock_dir = sock_path
.parent() .parent()