mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 15:51:23 +01:00
switch all tracing imports to observability::prelude
This commit is contained in:
parent
bc5f31b3a2
commit
5fca67054e
63 changed files with 824 additions and 735 deletions
|
|
@ -1,12 +1,10 @@
|
|||
use tracing::info;
|
||||
|
||||
use crate::{cli::CheckConfigArgs, config, error};
|
||||
use crate::{cli::CheckConfigArgs, config, error, observability::prelude::*};
|
||||
|
||||
pub(crate) async fn run(
|
||||
args: CheckConfigArgs,
|
||||
) -> Result<(), error::CheckConfigCommand> {
|
||||
let _config =
|
||||
config::load(args.config.config.as_ref(), args.sandboxed).await?;
|
||||
info!("Configuration looks good");
|
||||
t::info!("Configuration looks good");
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue