rename log::Server to log::Log
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
06f01d384f
commit
20fe84379c
4 changed files with 15 additions and 26 deletions
|
@ -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,
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue