diff --git a/ChangeLog b/ChangeLog index 5555588a6c..554988a424 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-10-03 Stefan Kost + + * tests/check/pipelines/cleanup.c: + Print message name and not just number. + 2007-10-03 Stefan Kost * docs/design/draft-tagreading.txt: diff --git a/tests/check/pipelines/cleanup.c b/tests/check/pipelines/cleanup.c index eeafe907ce..1e2a0b273b 100644 --- a/tests/check/pipelines/cleanup.c +++ b/tests/check/pipelines/cleanup.c @@ -66,8 +66,9 @@ run_pipeline (GstElement * pipeline, gchar * descr, } else if (revent & events) { continue; } - g_critical ("Unexpected message received of type %d, looking for %d: %s", - revent, tevent, descr); + g_critical + ("Unexpected message received of type %d, '%s', looking for %d: %s", + revent, gst_message_type_get_name (revent), tevent, descr); } gst_element_set_state (pipeline, GST_STATE_NULL);