Commit 54c7dc02 authored by Max Kellermann's avatar Max Kellermann

IcyMetaDataParser: remove useless log message

parent d8bcdca7
...@@ -22,15 +22,12 @@ ...@@ -22,15 +22,12 @@
#include "tag/Builder.hxx" #include "tag/Builder.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
#include "util/StringView.hxx" #include "util/StringView.hxx"
#include "Log.hxx"
#include <algorithm> #include <algorithm>
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
static constexpr Domain icy_metadata_domain("icy_metadata");
void void
IcyMetaDataParser::Reset() noexcept IcyMetaDataParser::Reset() noexcept
{ {
...@@ -85,9 +82,6 @@ icy_parse_tag_item(TagBuilder &tag, ...@@ -85,9 +82,6 @@ icy_parse_tag_item(TagBuilder &tag,
{ {
if (strcmp(name, "StreamTitle") == 0) if (strcmp(name, "StreamTitle") == 0)
icy_add_item(tag, TAG_TITLE, value); icy_add_item(tag, TAG_TITLE, value);
else
FormatDebug(icy_metadata_domain,
"unknown icy-tag: '%s'", name);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment