Skip to content

Commit

Permalink
fix: remove log info
Browse files Browse the repository at this point in the history
  • Loading branch information
remiroyc committed Apr 12, 2024
1 parent d7254aa commit a29fbf0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/indexer/src/storage/mongo/event_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ impl EventStore for MongoStore {

let mut total_tokens: u64 = 0;
while let Some(doc) = cursor.try_next().await? {
log::info!("doc: {:?}", doc);

if let Ok(total) = doc.get_i32("total_tokens") {
total_tokens += total as u64;
};
Expand Down

0 comments on commit a29fbf0

Please sign in to comment.