rename log::Server to log::Log

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-06-26 00:19:35 +00:00
parent 06f01d384f
commit 20fe84379c
4 changed files with 15 additions and 26 deletions

View file

@ -1,12 +1,6 @@
use std::sync::Arc;
use conduit::{
config::Config,
info,
log::{self},
utils::sys,
Error, Result,
};
use conduit::{config::Config, info, log::Log, utils::sys, Error, Result};
use tokio::runtime;
use crate::{clap::Args, tracing::TracingFlameGuard};
@ -52,7 +46,7 @@ impl Server {
server: Arc::new(conduit::Server::new(
config,
runtime.cloned(),
log::Server {
Log {
reload: tracing_reload_handle,
capture,
},