diff options
Diffstat (limited to 'admin/Interface/CrearSoftIncremental')
-rwxr-xr-x | admin/Interface/CrearSoftIncremental | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/Interface/CrearSoftIncremental b/admin/Interface/CrearSoftIncremental index 69ee9801..16b748f3 100755 --- a/admin/Interface/CrearSoftIncremental +++ b/admin/Interface/CrearSoftIncremental @@ -48,7 +48,7 @@ echo -n "" > $OGLOGSESSION; echo -n "" > $OGLOGCOMMAND # Registro de inicio de ejecución - echo "$MSG_INTERFACE_START $0 $*" | tee -a $OGLOGSESSION $OGLOGFILE + ogEcho log session "$MSG_INTERFACE_START $0 $*" # Si el destino es REPO y el cliente no está en modo "admin"; activar repositorio para escritura, if [ "$REPO" == "REPO" -a "$boot" != "admin" ] @@ -90,6 +90,6 @@ [ "$REPO" == "REPO" -a "$boot" != "admin" ] && CambiarAcceso user # Registro de fin de ejecución - echo "$MSG_INTERFACE_END $RETVAL" | tee -a $OGLOGSESSION $OGLOGFILE + ogEcho log session "$MSG_INTERFACE_END $RETVAL" exit $RETVAL |