Skip to content

Commit

Permalink
refactor: log targets not snakecase (#2904)
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo authored Jan 14, 2025
1 parent a295c22 commit 2caf241
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/torii/runner/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ use tracing::{error, info};
use tracing_subscriber::{fmt, EnvFilter};
use url::form_urlencoded;

pub(crate) const LOG_TARGET: &str = "torii_runner";
pub(crate) const LOG_TARGET: &str = "torii:runner";

#[derive(Debug, Clone)]
pub struct Runner {
Expand Down
2 changes: 1 addition & 1 deletion crates/torii/sqlite/src/executor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use crate::utils::{felt_to_sql_string, I256};
pub mod erc;
pub use erc::{RegisterErc20TokenQuery, RegisterErc721TokenMetadata, RegisterErc721TokenQuery};

pub(crate) const LOG_TARGET: &str = "torii_sqlite::executor";
pub(crate) const LOG_TARGET: &str = "torii::sqlite::executor";

#[derive(Debug, Clone)]
pub enum Argument {
Expand Down

0 comments on commit 2caf241

Please sign in to comment.