author | mickeyl <mickeyl> | 2005-05-02 17:31:47 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-05-02 17:31:47 (UTC) |
commit | c3d0da09d6c49061efc43ce9707c5952ebefdae3 (patch) (side-by-side diff) | |
tree | 73681d1181e19a40a0a10d616e56f976aa3f1ebd | |
parent | 8cbb0586482ec650d7ff4fa9b6a7390b8b050793 (diff) | |
download | opie-c3d0da09d6c49061efc43ce9707c5952ebefdae3.zip opie-c3d0da09d6c49061efc43ce9707c5952ebefdae3.tar.gz opie-c3d0da09d6c49061efc43ce9707c5952ebefdae3.tar.bz2 |
DEBUG: show why node wasn't recognized
-rw-r--r-- | libopie2/opiecore/oinputsystem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie2/opiecore/oinputsystem.cpp b/libopie2/opiecore/oinputsystem.cpp index a2306ca..f9078d6 100644 --- a/libopie2/opiecore/oinputsystem.cpp +++ b/libopie2/opiecore/oinputsystem.cpp @@ -70,10 +70,10 @@ void OInputSystem::synchronize() for ( QStringList::Iterator it = devInputFiles.begin(); it != devInputFiles.end(); ++it ) { QString absPath = devInput.absFilePath( *it ); bool isValid = OInputDevice::isValid( absPath ); - qDebug( "OInputSystem::synchronize() - checking if '%s' is a valid input system node... '%s'", - (const char*) absPath, isValid ? "yes" : "no" ); + qDebug( "OInputSystem::synchronize() - checking if '%s' is a valid input system node... '%s' [%s]", + (const char*) absPath, isValid ? "yes" : "no", isValid ? "(ok)" : strerror( errno ) ); if ( isValid ) _devices.insert( *it, new OInputDevice( this, absPath ) ); } } qDebug( "OInputSystem::synchronize() done" ); |