Changeset 976

Show
Ignore:
Timestamp:
03/24/08 10:08:43 (16 years ago)
Author:
ppalmers
Message:

fix verbose level

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/src/libutil/PosixMutex.cpp

    r967 r976  
    4848PosixMutex::Lock() 
    4949{ 
    50     debugOutput(DEBUG_LEVEL_VERBOSE, "(%p) lock\n", this); 
     50    debugOutput(DEBUG_LEVEL_VERY_VERBOSE, "(%p) lock\n", this); 
    5151    pthread_mutex_lock(&m_mutex); 
    5252} 
     
    5555PosixMutex::TryLock() 
    5656{ 
    57     debugOutput(DEBUG_LEVEL_VERBOSE, "(%p) trying to lock\n", this); 
     57    debugOutput(DEBUG_LEVEL_VERY_VERBOSE, "(%p) trying to lock\n", this); 
    5858    return pthread_mutex_trylock(&m_mutex) == 0; 
    5959} 
     
    6262PosixMutex::Unlock() 
    6363{ 
    64     debugOutput(DEBUG_LEVEL_VERBOSE, "(%p) unlock\n", this); 
     64    debugOutput(DEBUG_LEVEL_VERY_VERBOSE, "(%p) unlock\n", this); 
    6565    pthread_mutex_unlock(&m_mutex); 
    6666}