Changeset 1621
- Timestamp:
- 08/16/09 05:50:26 (14 years ago)
- Files:
-
- trunk/libffado/support/dbus/controlserver.cpp (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/support/dbus/controlserver.cpp
r1498 r1621 628 628 Enum::select( const DBus::Int32& idx ) 629 629 { 630 debugOutput( DEBUG_LEVEL_VER BOSE, "select(%d)\n", idx );630 debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "select(%d)\n", idx ); 631 631 return m_Slave.select(idx); 632 632 } … … 636 636 { 637 637 int retval = m_Slave.selected(); 638 debugOutput( DEBUG_LEVEL_VER BOSE, "selected() => %d\n", retval );638 debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "selected() => %d\n", retval ); 639 639 return retval; 640 640 } … … 652 652 { 653 653 std::string retval = m_Slave.getEnumLabel(idx); 654 debugOutput( DEBUG_LEVEL_VER BOSE, "getEnumLabel(%d) => %s\n", idx, retval.c_str() );654 debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "getEnumLabel(%d) => %s\n", idx, retval.c_str() ); 655 655 return retval; 656 656 } … … 668 668 AttributeEnum::select( const DBus::Int32& idx ) 669 669 { 670 debugOutput( DEBUG_LEVEL_VER BOSE, "select(%d)\n", idx );670 debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "select(%d)\n", idx ); 671 671 return m_Slave.select(idx); 672 672 } … … 676 676 { 677 677 int retval = m_Slave.selected(); 678 debugOutput( DEBUG_LEVEL_VER BOSE, "selected() => %d\n", retval );678 debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "selected() => %d\n", retval ); 679 679 return retval; 680 680 } … … 700 700 { 701 701 std::string retval = m_Slave.getEnumLabel(idx); 702 debugOutput( DEBUG_LEVEL_VER BOSE, "getEnumLabel(%d) => %s\n", idx, retval.c_str() );702 debugOutput( DEBUG_LEVEL_VERY_VERBOSE, "getEnumLabel(%d) => %s\n", idx, retval.c_str() ); 703 703 return retval; 704 704 }