summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-06-18 14:29:33 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-06-18 14:29:33 +0200
commit26396bfac2699e6b69702a79fb6bda954f822328 (patch)
tree4ca659bc9294753cfbff62954a2a638aa4a31fbc
parentade625111e42b64fed0145066f06593a235e75cd (diff)
androidmedia: Failing to detach a thread is not that much of a problem
Someone else might have detached it before us, so make this just normal debug output instead of a GST_ERROR()
-rw-r--r--sys/androidmedia/gstjniutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/androidmedia/gstjniutils.c b/sys/androidmedia/gstjniutils.c
index c842db1d8..1583e1472 100644
--- a/sys/androidmedia/gstjniutils.c
+++ b/sys/androidmedia/gstjniutils.c
@@ -488,7 +488,7 @@ gst_amc_jni_detach_current_thread (void *env)
GST_DEBUG ("Detaching thread %p", g_thread_self ());
if ((ret = (*java_vm)->DetachCurrentThread (java_vm)) != JNI_OK) {
- GST_ERROR ("Failed to detach current thread: %d", ret);
+ GST_DEBUG ("Failed to detach current thread: %d", ret);
}
}