Skip to content

Commit

Permalink
Merge pull request #685 from ksooo/fix-logspam2
Browse files Browse the repository at this point in the history
Fix pointless 'Not all properties handled' log spam.
  • Loading branch information
ksooo authored Sep 28, 2024
2 parents dc8d521 + cfb4e0a commit 39b9b80
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pvr.hts/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.hts"
version="22.4.1"
version="22.4.2"
name="Tvheadend HTSP Client"
provider-name="Adam Sutton, Sam Stenvall, Lars Op den Kamp, Kai Sommerfeld">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
3 changes: 3 additions & 0 deletions pvr.hts/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v22.4.2
- Fix pointless "Not all properties handled" log spam introduced with v22.4.1

v22.4.1
- Fix pointless "Unknown property" log spam introduced with v22.4.0
- Fix update of "DVR configuration" property not working
Expand Down
6 changes: 0 additions & 6 deletions src/tvheadend/CustomTimerProperties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ std::vector<kodi::addon::PVRSettingKeyValuePair> CustomTimerProperties::GetPrope
std::vector<kodi::addon::PVRSettingKeyValuePair> customProps;
GetCommonProperties(customProps, rec);

if (customProps.size() < m_propIds.size())
Logger::Log(LogLevel::LEVEL_ERROR, "Not all properties handled!");

return customProps;
}

Expand All @@ -63,9 +60,6 @@ std::vector<kodi::addon::PVRSettingKeyValuePair> CustomTimerProperties::GetPrope
}
}

if (customProps.size() < m_propIds.size())
Logger::Log(LogLevel::LEVEL_ERROR, "Not all properties handled!");

return customProps;
}

Expand Down

0 comments on commit 39b9b80

Please sign in to comment.