diff --git a/src/arch/InputHandler/InputHandler_Linux_PIUIO.cpp b/src/arch/InputHandler/InputHandler_Linux_PIUIO.cpp index 1febef3722..29680c2bd0 100644 --- a/src/arch/InputHandler/InputHandler_Linux_PIUIO.cpp +++ b/src/arch/InputHandler/InputHandler_Linux_PIUIO.cpp @@ -24,7 +24,9 @@ InputHandler_Linux_PIUIO::InputHandler_Linux_PIUIO() fd = open( "/dev/piuio0", O_RDONLY ); if( fd < 0 ) { - LOG->Warn( "Couldn't open PIUIO device: %s", strerror(errno) ); + /* As it happens, most people don't have one of these. Don't log this. + * TODO: Log it if it's in the device list. - Colby */ + //LOG->Warn( "Couldn't open PIUIO device: %s", strerror(errno) ); return; }