From 6f29d234ebb164edeb409f10c4b806c96e0af6bf Mon Sep 17 00:00:00 2001 From: curt Date: Sun, 25 Apr 2004 02:30:52 +0000 Subject: [PATCH] Lower the verbosity in a couple other spots. --- simgear/sound/sample_openal.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/simgear/sound/sample_openal.cxx b/simgear/sound/sample_openal.cxx index 2a36333a..107d630e 100644 --- a/simgear/sound/sample_openal.cxx +++ b/simgear/sound/sample_openal.cxx @@ -71,7 +71,7 @@ SGSoundSample::SGSoundSample( const char *path, const char *file ) : samplepath.append( file ); } - SG_LOG( SG_GENERAL, SG_ALERT, "From file sounds sample = " + SG_LOG( SG_GENERAL, SG_DEBUG, "From file sounds sample = " << samplepath.str() ); ALuint error; @@ -88,8 +88,6 @@ SGSoundSample::SGSoundSample( const char *path, const char *file ) : if ( error != AL_NO_ERROR ) { print_openal_error( error ); throw sg_exception("Failed to gen OpenAL buffer."); - } else { - SG_LOG( SG_GENERAL, SG_ALERT, "Buffer created ok!" ); } // Load the sample file @@ -133,7 +131,7 @@ SGSoundSample::SGSoundSample( unsigned char *_data, int len, int _freq ) : volume(1.0), loop(AL_FALSE) { - SG_LOG( SG_GENERAL, SG_ALERT, "In memory sounds sample" ); + SG_LOG( SG_GENERAL, SG_DEBUG, "In memory sounds sample" ); source_pos[0] = 0.0; source_pos[1] = 0.0; source_pos[2] = 0.0; source_vel[0] = 0.0; source_vel[1] = 0.0; source_vel[2] = 0.0; -- 2.39.5