chore(rust): remove double logger setup (#9127)

I thought I had fixed this in #9111 but while rebasing, I must have
deleted the wrong line so the logger now gets initialised twice.
This commit is contained in:
Thomas Eizinger
2025-05-14 14:39:39 +10:00
committed by GitHub
parent f19702f53e
commit 037421f111

View File

@@ -85,7 +85,6 @@ impl Server {
}
pub async fn open(url: &url::Url) -> Result<()> {
crate::logging::setup_stdout()?;
let path = sock_path()?;
let mut stream = UnixStream::connect(&path).await?;