From 738507d43ae7ec1964f061c6c9aaf1702cc9e0ce Mon Sep 17 00:00:00 2001 From: phunkyfish Date: Sun, 25 Feb 2024 09:08:45 +0000 Subject: [PATCH] Add log for missing group --- src/OctonetData.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/OctonetData.cpp b/src/OctonetData.cpp index 44abe11..528fda5 100644 --- a/src/OctonetData.cpp +++ b/src/OctonetData.cpp @@ -439,6 +439,8 @@ OctonetGroup* OctonetData::FindGroup(const std::string& name) return &group; } + kodi::Log(ADDON_LOG_ERROR, "Could not find group: %s, in available groups from the server"); + return nullptr; }