From 1408920193a461d408e8a2fceb77a636df31ebe7 Mon Sep 17 00:00:00 2001 From: Markus Becker Date: Thu, 1 Jun 2023 15:30:42 +0200 Subject: [PATCH] Correct log message in OnGroupRemoved() (#27001) Log message is clearly copy and pasted and has not been adapted. --- src/app/server/Server.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/server/Server.h b/src/app/server/Server.h index eee11b0bc6ff60..7eea447e20dc45 100644 --- a/src/app/server/Server.h +++ b/src/app/server/Server.h @@ -397,7 +397,7 @@ class Server const FabricInfo * fabric = mServer->GetFabricTable().FindFabricWithIndex(fabric_index); if (fabric == nullptr) { - ChipLogError(AppServer, "Group added to nonexistent fabric?"); + ChipLogError(AppServer, "Group removed from nonexistent fabric?"); return; }