Skip to content

Commit

Permalink
feat(callhome): change the events tracing target (#35)
Browse files Browse the repository at this point in the history
Signed-off-by: Vandana Varakantham <[email protected]>
Co-authored-by: Vandana Varakantham <[email protected]>
  • Loading branch information
datacore-vvarakantham and Vandana Varakantham authored Jul 25, 2023
1 parent b29e863 commit 2eb12fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion events-api/src/event_traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl EventMessage {
/// Generate the event trace with event message.
pub fn generate(&self) {
let event_data = serde_json::to_string(&self).unwrap_or_default();
tracing::event!(target: "target-mbus", tracing::Level::INFO, event_data);
tracing::event!(target: "mbus-events-target", tracing::Level::INFO, event_data);
}
}

Expand Down

0 comments on commit 2eb12fa

Please sign in to comment.