Skip to content

Commit

Permalink
Remove debug (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles authored Mar 27, 2024
1 parent b523fac commit 5920411
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions rs/producer/cdk_runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,9 @@ async fn flush_async<F: FnOnce(FlushOutcome)>(
ic_cdk::call::<_, ()>(canister_id, "push_events", (PushEventsArgs { events },)).await
{
on_complete(FLUSH_OUTCOME_FAILED_SHOULD_RETRY);
ic_cdk::println!("Failed to call 'push_events'");
error!(%canister_id, events = events_len, ?error, "Failed to call 'push_events'");
} else {
on_complete(FLUSH_OUTCOME_SUCCESS);
ic_cdk::println!("Successfully called `push_events`");
trace!(%canister_id, events = events_len, "Successfully called `push_events`");
}
}
Expand Down

0 comments on commit 5920411

Please sign in to comment.