From 804ba31056068a5af3d24090db74a81718f28e6d Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Mon, 22 May 2023 14:10:49 -0700 Subject: [PATCH] [notifier] add missing event in `EventToString()` (#9072) --- src/core/common/notifier.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/common/notifier.cpp b/src/core/common/notifier.cpp index 4cc5a9634..706350bba 100644 --- a/src/core/common/notifier.cpp +++ b/src/core/common/notifier.cpp @@ -271,6 +271,7 @@ const char *Notifier::EventToString(Event aEvent) const "JoinerState", // kEventJoinerStateChanged (1 << 27) "ActDset", // kEventActiveDatasetChanged (1 << 28) "PndDset", // kEventPendingDatasetChanged (1 << 29) + "Nat64", // kEventNat64TranslatorStateChanged (1 << 30) }; for (uint8_t index = 0; index < GetArrayLength(kEventStrings); index++)