summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2019-03-26 19:35:19 -0300
committerThibault Saunier <tsaunier@gnome.org>2019-04-03 13:38:42 +0000
commit3650e66aece16049e9b429f185d16814e224c16c (patch)
treed35fe42a5a9533ae7a51b08629867941f5594b95
parente279b1ff5632c1db0b6564330f6296dc7830551d (diff)
validate: Print error message details in our reports
-rw-r--r--validate/gst/validate/gst-validate-pipeline-monitor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/validate/gst/validate/gst-validate-pipeline-monitor.c b/validate/gst/validate/gst-validate-pipeline-monitor.c
index 36794d0..999a77c 100644
--- a/validate/gst/validate/gst-validate-pipeline-monitor.c
+++ b/validate/gst/validate/gst-validate-pipeline-monitor.c
@@ -559,7 +559,8 @@ _bus_handler (GstBus * bus, GstMessage * message,
g_free (report);
} else {
GST_VALIDATE_REPORT (monitor, ERROR_ON_BUS,
- "Got error: %s -- Debug message: %s", err->message, debug);
+ "Got error: %s -- Debug message: %s (%" GST_PTR_FORMAT ")",
+ err->message, debug, details);
}
GST_VALIDATE_MONITOR_LOCK (monitor);