diff options
author | Paweł Kołodziejski | 2004-02-14 16:13:16 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2004-02-14 16:13:16 +0000 |
commit | 06d7b1729d60a6c8282e4fa9cbb3d4dae414ff74 (patch) | |
tree | 0353f52b45c42274eca1821b895454b03751f3e3 | |
parent | 4e7850b0f1ad9a297fe8e213a9200cf6b4c79593 (diff) | |
download | scummvm-rg350-06d7b1729d60a6c8282e4fa9cbb3d4dae414ff74.tar.gz scummvm-rg350-06d7b1729d60a6c8282e4fa9cbb3d4dae414ff74.tar.bz2 scummvm-rg350-06d7b1729d60a6c8282e4fa9cbb3d4dae414ff74.zip |
increased debug level
svn-id: r12889
-rw-r--r-- | common/util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/util.cpp b/common/util.cpp index 4e77d60b58..ae307faff5 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -117,7 +117,7 @@ StackLock::~StackLock() { void StackLock::lock() { assert(_syst); if (_mutexName != NULL) - debug(5, "Locking mutex %s", _mutexName); + debug(6, "Locking mutex %s", _mutexName); _syst->lock_mutex(_mutex); } @@ -125,7 +125,7 @@ void StackLock::lock() { void StackLock::unlock() { assert(_syst); if (_mutexName != NULL) - debug(5, "Unlocking mutex %s", _mutexName); + debug(6, "Unlocking mutex %s", _mutexName); _syst->unlock_mutex(_mutex); } |