You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I made an error wrapper for my project that embeds the logging level wanted for the error.
Therefore I have a method that calls logrus.Log(level, "error description"), and I was surprised that if level is equal to logrus.FatalLevel, logrus.Log won't exit as logrus.Fatal would.
Is this the wanted behavior ? If so, why ?