mirror of https://github.com/axmolengine/axmol.git
Do not define VERY_VERY_VERBOSE_LOGGING by default. (#18036)
This commit is contained in:
parent
ecea0f4951
commit
74a6fd3293
|
@ -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
|
||||||
|
|
|
@ -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. **/
|
||||||
|
|
Loading…
Reference in New Issue