Show
Ignore:
Timestamp:
06/19/10 11:34:16 (14 years ago)
Author:
arnonym
Message:

Result of several days of searching a bug (that turned out to be a pebkac): some modifications of the debug-strings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/src/libieee1394/IsoHandlerManager.cpp

    r1849 r1859  
    16291629    #ifdef DEBUG 
    16301630    if(m_last_cycle == -1) { 
    1631         debugOutput(DEBUG_LEVEL_VERBOSE, "Handler for %s SP %p is alive (cycle = %d)\n", getTypeString(), this, cycle); 
     1631        debugOutput(DEBUG_LEVEL_VERBOSE, "Handler for %s SP %p is alive. cycle=%d state=%i\n", getTypeString(), this, cycle, m_State); 
    16321632    } 
    16331633    #endif 
     
    18271827{ 
    18281828    if (m_State == eHS_Running) { 
    1829         debugError("Enable requested on enabled stream\n"); 
     1829        debugError("Enable requested on enabled stream '%s'\n", getTypeString()); 
    18301830        return false; 
    18311831    } 
    18321832    if (m_State != eHS_Stopped) { 
    1833         debugError("Enable requested on stream with state: %d\n", m_State); 
     1833        debugError("Enable requested on stream '%s' with state: %d\n", getTypeString(), m_State); 
    18341834        return false; 
    18351835    }