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:
parent
bbb842c3e9
commit
b162f6f1e2
@ -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
|
||||||
);
|
);
|
||||||
|
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user