log update

This commit is contained in:
xdrm-brackets 2017-05-09 12:31:07 +02:00
parent 50739a1f30
commit 8e70aea830
1 changed files with 6 additions and 6 deletions

View File

@ -17,7 +17,7 @@
/* (2) Manage errors */ /* (2) Manage errors */
if( $f_gstate === false ){ if( $f_gstate === false ){
slog('Cannot access GLOBAL STATE file', 'global-state:update'); slog('Cannot access GLOBAL STATE file', 'global-state:update', 'daemon');
return 127; return 127;
} }
@ -38,7 +38,7 @@
/* (2) Section Title */ /* (2) Section Title */
if( $f_cstates === false ){ if( $f_cstates === false ){
slog('Cannot access GLOBAL/CHIP STATES file', 'global-state:update'); slog('Cannot access GLOBAL/CHIP STATES file', 'global-state:update', 'daemon');
return 127; return 127;
} }
@ -65,12 +65,12 @@
$failed = true; $failed = true;
break; break;
} }
} }
// {4} If not failed -> state to keep // // {4} If not failed -> state to keep //
if( !$failed ){ if( !$failed ){
slog("Current state '$GLOBAL_STATE' matches '{$parsed[0]}'", 'global-state:update'); slog("Current state '$GLOBAL_STATE' matches '{$parsed[0]}'", 'global-state:update', 'daemon');
$CHIP_STATE = $parsed[1]; $CHIP_STATE = $parsed[1];
break; break;
} }
@ -79,7 +79,7 @@
/* (4) If no CHIP_STATE set -> abort */ /* (4) If no CHIP_STATE set -> abort */
if( is_null($CHIP_STATE) ){ if( is_null($CHIP_STATE) ){
slog("Cannot find a chip_state for the current global state '{$GLOBAL_STATE}'", 'global-state'); slog("Cannot find a chip_state for the current global state '{$GLOBAL_STATE}'", 'global-state', 'daemon');
return 127; return 127;
} }
@ -121,7 +121,7 @@
/* (4) If error */ /* (4) If error */
if( $updated === false ) if( $updated === false )
slog("Cannot set ${position} chip to state {$state}", 'global-state:update'); slog("Cannot set ${position} chip to state {$state}", 'global-state:update', 'daemon');
} }
} }