enhance messages when blender is not found #104224
@ -31,14 +31,16 @@ func findBlender() {
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
||||
defer cancel()
|
||||
|
||||
helpMsg := "Flamenco Manager will have to supply the full path to Blender when Tasks are sent to this Worker. For more help see https://flamenco.blender.org/usage/variables/blender/"
|
||||
|
||||
result, err := find_blender.Find(ctx)
|
||||
switch {
|
||||
|
||||
case errors.Is(err, fs.ErrNotExist), errors.Is(err, exec.ErrNotFound):
|
||||
|
||||
log.Warn().Msg(`The Worker could not find Blender on this system. Flamenco Manager will have to supply the full path to Blender when Tasks are sent to this Worker. For more help see https://flamenco.blender.org/usage/variables/blender/`)
|
||||
log.Warn().Msg("The Worker could not find Blender on this system. " + helpMsg)
|
||||
|
||||
Sybren A. Stüvel
commented
The Also I don't think the backticks are necessary, regular double quotes should work equally well. The `Flamenco Manager will have to supply the full path to Blender when Tasks are sent to this Worker. For more help see https://flamenco.blender.org/usage/variables/blender/` text can be extracted to a constant, so that it doesn't have to be repeated.
Also I don't think the backticks are necessary, regular double quotes should work equally well.
|
||||
case err != nil:
|
||||
log.Warn().AnErr("cause", err).Msg(`There was an error finding Blender on this system. Flamenco Manager will have to supply the full path to Blender when Tasks are sent to this Worker. For more help see https://flamenco.blender.org/usage/variables/blender/`)
|
||||
log.Warn().AnErr("cause", err).Msg("There was an error finding Blender on this system. " + helpMsg)
|
||||
default:
|
||||
log.Info().
|
||||
Str("path", result.FoundLocation).
|
||||
|
Loading…
Reference in New Issue
Block a user
I don't think this newline is necessary.