gst/tags/gstvorbistag.c: replaced a g_warning which I added in my previous commit with GST_DEBUG

Original commit message from CVS:
2004-06-12  Christophe Fergeau  <teuf@gnome.org>

* gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
previous commit with GST_DEBUG
This commit is contained in:
Christophe Fergeau 2004-06-12 11:24:50 +00:00
parent 08a2ed3be0
commit 7d95f78199
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-06-12 Christophe Fergeau <teuf@gnome.org>
* gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
previous commit with GST_DEBUG
2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:

View file

@ -324,7 +324,7 @@ gst_vorbis_tag_add (GstTagList * list, const gchar * tag, const gchar * value)
if (!g_utf8_validate (value, -1, (const gchar **) &valid)) {
valid = g_strndup (value, valid - value);
g_warning ("Invalid vorbis comment tag, truncated it to %s\n", valid);
GST_DEBUG ("Invalid vorbis comment tag, truncated it to %s\n", valid);
} else {
valid = g_strdup (value);
}