Skip to content

Commit

Permalink
fix: tracing info
Browse files Browse the repository at this point in the history
  • Loading branch information
remiroyc committed Jul 9, 2024
1 parent 06f2509 commit d9fa81e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions crates/sana/src/managers/block_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ use crate::storage::types::{BlockIndexingStatus, BlockInfo, StorageError};
use crate::storage::Storage;
use starknet::core::types::FieldElement;
use std::sync::Arc;
use tracing::{debug, error, trace};
use version_compare::{compare, Cmp};
use tracing::error;

#[derive(Debug)]
pub struct BlockManager<S: Storage> {
Expand Down
2 changes: 1 addition & 1 deletion crates/sana/src/storage/sqlx/default_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use crate::Storage;
use async_trait::async_trait;
use sqlx::{postgres::PgPoolOptions, Error as SqlxError, FromRow, PgPool, Row};
use std::str::FromStr;
use tracing::{error, trace};
use tracing::{error, trace, info};

impl From<SqlxError> for StorageError {
fn from(e: SqlxError) -> Self {
Expand Down

0 comments on commit d9fa81e

Please sign in to comment.