We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 16f6e26 + c7f4503 commit e53a456Copy full SHA for e53a456
src/components/lmsensors/linux-lmsensors.c
@@ -201,8 +201,7 @@ createNativeEvents( void )
201
char *featurelabel;
202
203
if ( !( featurelabel = sensors_get_labelPtr( chip_name, feature ))) {
204
- fprintf( stderr, "ERROR: Can't get label of feature %s!\n",
205
- feature->name );
+ SUBDBG( "ERROR: Can't get label of feature %s!\n", feature->name );
206
continue;
207
}
208
@@ -260,8 +259,7 @@ getEventValue( unsigned event_id )
260
259
subfeat_nr, &value );
261
262
if ( res < 0 ) {
263
- fprintf( stderr, "libsensors(): Could not read event #%d!\n",
264
- event_id );
+ SUBDBG( "libsensors(): Could not read event #%d!\n", event_id );
265
return -1;
266
267
0 commit comments