Skip to content

Commit bdfd858

Browse files
authored
Merge pull request #3000 from okunamayanad/bm-branch-2
fix: handle config changes in summarize_event
2 parents 5986508 + 4309ca0 commit bdfd858

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

  • apps/cli/src/domains/events

apps/cli/src/domains/events/mod.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,5 +445,10 @@ fn summarize_event(event: &Event) -> String {
445445
Event::Custom { event_type, data } => {
446446
format!("Custom event: {} - {:?}", event_type, data)
447447
}
448+
449+
// Config events
450+
Event::ConfigChanged { field } => {
451+
format!("Configuration changed: {}", field)
452+
}
448453
}
449454
}

0 commit comments

Comments
 (0)