Open bbengfort opened 7 years ago
Make sure all of the FluidFS errors are handled using the fluid.Error type. Search for places where:
errors.New
fmt.Errorf
return err
logger.Error
Hopefully that will catch all of them.
Make sure that logger.Error calls are replaced with err.Log() as well.
err.Log()
Make sure all of the FluidFS errors are handled using the fluid.Error type. Search for places where:
errors.New
existsfmt.Errorf
existsreturn err
existslogger.Error
Hopefully that will catch all of them.
Make sure that
logger.Error
calls are replaced witherr.Log()
as well.