Do not define VERY_VERY_VERBOSE_LOGGING by default. (#18036)

This commit is contained in:
Tiago Martines 2017-07-06 03:57:02 -03:00 committed by minggo
parent ecea0f4951
commit 74a6fd3293
2 changed files with 1 additions and 3 deletions

View File

@ -37,7 +37,6 @@
#include "audio/apple/AudioDecoder.h" #include "audio/apple/AudioDecoder.h"
#define VERY_VERY_VERBOSE_LOGGING
#ifdef VERY_VERY_VERBOSE_LOGGING #ifdef VERY_VERY_VERBOSE_LOGGING
#define ALOGVV ALOGV #define ALOGVV ALOGV
#else #else

View File

@ -34,7 +34,6 @@
#include "platform/CCFileUtils.h" #include "platform/CCFileUtils.h"
#include "audio/apple/AudioDecoder.h" #include "audio/apple/AudioDecoder.h"
#define VERY_VERY_VERBOSE_LOGGING
#ifdef VERY_VERY_VERBOSE_LOGGING #ifdef VERY_VERY_VERBOSE_LOGGING
#define ALOGVV ALOGV #define ALOGVV ALOGV
#else #else
@ -145,7 +144,7 @@ void AudioPlayer::setCache(AudioCache* cache)
bool AudioPlayer::play2d() bool AudioPlayer::play2d()
{ {
_play2dMutex.lock(); _play2dMutex.lock();
ALOGV("AudioPlayer::play2d, _alSource: %u", _alSource); ALOGVV("AudioPlayer::play2d, _alSource: %u", _alSource);
/*********************************************************************/ /*********************************************************************/
/* Note that it may be in sub thread or in main thread. **/ /* Note that it may be in sub thread or in main thread. **/