Skip to content

Commit

Permalink
Reduce severity of sensord not available diagnostics
Browse files Browse the repository at this point in the history
These will trigger on mce startup before dbus name query finishes.
  • Loading branch information
spiiroin committed Nov 11, 2013
1 parent 9d06132 commit e96e2de
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mce-sensorfw.c
Expand Up @@ -965,7 +965,7 @@ mce_sensorfw_als_rethink(void)
{
mce_log(LL_DEBUG, "@%s()", __FUNCTION__);
if( !sensord_running ) {
mce_log(LL_WARN, "skipping als enable/disable;"
mce_log(LL_NOTICE, "skipping als enable/disable;"
" sensord not available");
goto EXIT;
}
Expand Down Expand Up @@ -1390,8 +1390,8 @@ mce_sensorfw_ps_rethink(void)
{
mce_log(LL_DEBUG, "@%s()", __FUNCTION__);
if( !sensord_running ) {
mce_log(LL_WARN, "sensord not on dbus;"
" skipping ps enable/disable for now");
mce_log(LL_NOTICE, "skipping ps enable/disable;"
" sensord not available");
goto EXIT;
}

Expand Down Expand Up @@ -1808,8 +1808,8 @@ mce_sensorfw_orient_rethink(void)
{
mce_log(LL_DEBUG, "@%s()", __FUNCTION__);
if( !sensord_running ) {
mce_log(LL_WARN, "sensord not on dbus;"
" skipping ps enable/disable for now");
mce_log(LL_NOTICE, "skipping ps enable/disable;"
" sensord not available");
goto EXIT;
}

Expand Down

0 comments on commit e96e2de

Please sign in to comment.