refactor: `mod trace` -> `mod logging`

This commit is contained in:
Harsh Shandilya 2022-08-18 10:24:11 +05:30
parent 3be52d4562
commit 48c72b601f
No known key found for this signature in database
GPG Key ID: 366D7BBAD1031E80
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
mod config;
mod trace;
mod logging;
mod watch;
use crate::config::{get_path, Root};
@ -11,7 +11,7 @@ use watchman_client::{prelude::*, SubscriptionData};
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> {
trace::init()?;
logging::init()?;
if let Err(err) = run().await {
error!(?err);
std::process::exit(1);