Worker: reduce double logging

Remove double logging of 'command exited succesfully' message.
This commit is contained in:
Sybren A. Stüvel 2023-12-25 14:55:35 +01:00
parent fe26a026e6
commit 8ae0bc37dd
3 changed files with 0 additions and 3 deletions

View File

@ -71,7 +71,6 @@ func (ce *CommandExecutor) cmdBlenderRender(ctx context.Context, logger zerolog.
return subprocessErr return subprocessErr
} }
logger.Info().Msg("command exited succesfully")
return nil return nil
} }

View File

@ -39,7 +39,6 @@ func (ce *CommandExecutor) cmdExec(ctx context.Context, logger zerolog.Logger, t
return subprocessErr return subprocessErr
} }
logger.Info().Msg("command exited succesfully")
return nil return nil
} }

View File

@ -56,7 +56,6 @@ func (ce *CommandExecutor) cmdFramesToVideo(ctx context.Context, logger zerolog.
return subprocessErr return subprocessErr
} }
logger.Info().Msg("command exited succesfully")
return nil return nil
} }