IcyMetaDataParser: remove useless log message

This commit is contained in:
Max Kellermann 2019-07-05 17:26:31 +02:00
parent d8bcdca7ff
commit 54c7dc029e

View File

@ -22,15 +22,12 @@
#include "tag/Builder.hxx"
#include "util/Domain.hxx"
#include "util/StringView.hxx"
#include "Log.hxx"
#include <algorithm>
#include <assert.h>
#include <string.h>
static constexpr Domain icy_metadata_domain("icy_metadata");
void
IcyMetaDataParser::Reset() noexcept
{
@ -85,9 +82,6 @@ icy_parse_tag_item(TagBuilder &tag,
{
if (strcmp(name, "StreamTitle") == 0)
icy_add_item(tag, TAG_TITLE, value);
else
FormatDebug(icy_metadata_domain,
"unknown icy-tag: '%s'", name);
}
/**