Skip to content

Commit

Permalink
Tone down non-interesting debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
spiiroin committed Apr 11, 2014
1 parent 49cf409 commit d87306d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mce-hal.c
Expand Up @@ -239,7 +239,7 @@ product_id_t get_product_id(void)
free(tmp);

if ( product_id == PRODUCT_UNKNOWN ) {
mce_log(LL_ERR, "Failed to get the product ID");
mce_log(LL_NOTICE, "Failed to get the product ID");
}

EXIT:
Expand Down
2 changes: 1 addition & 1 deletion mce-sensorfw.c
Expand Up @@ -668,7 +668,7 @@ als_notify(unsigned lux, input_source_t srce)

if( srce == DS_SENSORD ) {
if( lux != als_lux_last )
mce_log(LL_WARN, "sensord=%u vs evdev=%u",
mce_log(LL_DEBUG, "sensord=%u vs evdev=%u",
lux, als_lux_last);
goto EXIT;
}
Expand Down

0 comments on commit d87306d

Please sign in to comment.