aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorJacek Antonelli2009-04-06 21:58:22 -0500
committerJacek Antonelli2009-04-06 21:58:27 -0500
commit305f2f13f244e970d2b4f98b6de24553b2f3c512 (patch)
tree145a6baf1e5456ca6e289f879ab6325e46161b0a /linden
parentMade LogLock mutex less likely to fail, hopefully. (diff)
downloadmeta-impy-305f2f13f244e970d2b4f98b6de24553b2f3c512.zip
meta-impy-305f2f13f244e970d2b4f98b6de24553b2f3c512.tar.gz
meta-impy-305f2f13f244e970d2b4f98b6de24553b2f3c512.tar.bz2
meta-impy-305f2f13f244e970d2b4f98b6de24553b2f3c512.tar.xz
Don't use LL_ERRS, it makes the viewer abort!
Diffstat (limited to 'linden')
-rw-r--r--linden/indra/llmedia/llmediaimplgstreamer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llmedia/llmediaimplgstreamer.cpp b/linden/indra/llmedia/llmediaimplgstreamer.cpp
index 5ec9eaf..7eb2b7b 100644
--- a/linden/indra/llmedia/llmediaimplgstreamer.cpp
+++ b/linden/indra/llmedia/llmediaimplgstreamer.cpp
@@ -357,7 +357,7 @@ void LLMediaImplGStreamer::gstreamer_log(GstDebugCategory *category,
357 switch( level ) 357 switch( level )
358 { 358 {
359 case GST_LEVEL_ERROR: 359 case GST_LEVEL_ERROR:
360 LL_ERRS("MediaImpl") << log.str() << LL_ENDL; 360 LL_WARNS("MediaImpl") << "(ERROR) " << log.str() << LL_ENDL;
361 break; 361 break;
362 case GST_LEVEL_WARNING: 362 case GST_LEVEL_WARNING:
363 LL_WARNS("MediaImpl") << log.str() << LL_ENDL; 363 LL_WARNS("MediaImpl") << log.str() << LL_ENDL;