diff options
author | callum_linden <none@none> | 2013-05-30 14:21:37 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2013-05-30 14:21:37 -0700 |
commit | 4f6102dfaa0a8a94b4755d8250aa542edeb6e6e3 (patch) | |
tree | fb7eae83daec5b5f16563960d20c850af6a7ad99 /indra/llaudio/llaudioengine_fmodex.cpp | |
parent | 6b2266e9fb470438ab8f4162176309dfaa5eb181 (diff) |
Minor tweak to turn down FMOD Ex noisy console logging while we look into root problem
Diffstat (limited to 'indra/llaudio/llaudioengine_fmodex.cpp')
-rw-r--r-- | indra/llaudio/llaudioengine_fmodex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llaudio/llaudioengine_fmodex.cpp b/indra/llaudio/llaudioengine_fmodex.cpp index 0e789f9011..66c969d1b0 100644 --- a/indra/llaudio/llaudioengine_fmodex.cpp +++ b/indra/llaudio/llaudioengine_fmodex.cpp @@ -67,7 +67,7 @@ inline bool Check_FMOD_Error(FMOD_RESULT result, const char *string) { if(result == FMOD_OK) return false; - llwarns << string << " Error: " << FMOD_ErrorString(result) << llendl; + lldebugs << string << " Error: " << FMOD_ErrorString(result) << llendl; return true; } |