diff --git a/src/controller/java/AndroidDeviceControllerWrapper.cpp b/src/controller/java/AndroidDeviceControllerWrapper.cpp index 83d6c8abdc8057..526f6830844f13 100644 --- a/src/controller/java/AndroidDeviceControllerWrapper.cpp +++ b/src/controller/java/AndroidDeviceControllerWrapper.cpp @@ -1091,7 +1091,7 @@ CHIP_ERROR AndroidDeviceControllerWrapper::SyncDeleteKeyValue(const char * key) void AndroidDeviceControllerWrapper::StartDnssd() { FabricTable * fabricTable = DeviceControllerFactory::GetInstance().GetSystemState()->Fabrics(); - VerifyOrReturn(fabricTable != nullptr, ChipLogError(controller, "Fail to get fabricTable in StartDnssd")); + VerifyOrReturn(fabricTable != nullptr, ChipLogError(Controller, "Fail to get fabricTable in StartDnssd")); chip::app::DnssdServer::Instance().SetFabricTable(fabricTable); chip::app::DnssdServer::Instance().StartServer(); }