Show
Ignore:
Timestamp:
08/16/09 05:50:26 (15 years ago)
Author:
jwoithe
Message:

Increase debug log level of selected method notifiers in the controlserver from VERBOSE to VERY_VERBOSE. This prevents messages associated with periodic idle handler action getting in the way of other more interesting messages at the verbose level.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/support/dbus/controlserver.cpp

    r1498 r1621  
    628628Enum::select( const DBus::Int32& idx ) 
    629629{ 
    630     debugOutput( DEBUG_LEVEL_VERBOSE, "select(%d)\n", idx ); 
     630    debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "select(%d)\n", idx ); 
    631631    return  m_Slave.select(idx); 
    632632} 
     
    636636{ 
    637637    int retval = m_Slave.selected(); 
    638     debugOutput( DEBUG_LEVEL_VERBOSE, "selected() => %d\n", retval ); 
     638    debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "selected() => %d\n", retval ); 
    639639    return retval; 
    640640} 
     
    652652{ 
    653653    std::string retval = m_Slave.getEnumLabel(idx); 
    654     debugOutput( DEBUG_LEVEL_VERBOSE, "getEnumLabel(%d) => %s\n", idx, retval.c_str() ); 
     654    debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "getEnumLabel(%d) => %s\n", idx, retval.c_str() ); 
    655655    return retval; 
    656656} 
     
    668668AttributeEnum::select( const DBus::Int32& idx ) 
    669669{ 
    670     debugOutput( DEBUG_LEVEL_VERBOSE, "select(%d)\n", idx ); 
     670    debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "select(%d)\n", idx ); 
    671671    return  m_Slave.select(idx); 
    672672} 
     
    676676{ 
    677677    int retval = m_Slave.selected(); 
    678     debugOutput( DEBUG_LEVEL_VERBOSE, "selected() => %d\n", retval ); 
     678    debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "selected() => %d\n", retval ); 
    679679    return retval; 
    680680} 
     
    700700{ 
    701701    std::string retval = m_Slave.getEnumLabel(idx); 
    702     debugOutput( DEBUG_LEVEL_VERBOSE, "getEnumLabel(%d) => %s\n", idx, retval.c_str() ); 
     702    debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "getEnumLabel(%d) => %s\n", idx, retval.c_str() ); 
    703703    return retval; 
    704704}