Hi,
I see that when you want to log a result, you have to suffix it with a call to .Log(), however in my codebase I would like to do this for all failures in the entire system.
It would be great if I could specify globally if results should be logged, something like:
Result.Setup(cfg => {
cfg.Logger = myLogger;
cfg.LogSuccess = false;
cfg.LogFailures = true;
});
Hi,
I see that when you want to log a result, you have to suffix it with a call to .Log(), however in my codebase I would like to do this for all failures in the entire system.
It would be great if I could specify globally if results should be logged, something like: