public void Fatal(string message, Exception exception = null) { if (string.IsNullOrWhiteSpace(message)) { return; } message = string.Concat(LogPrefix, message); ApplicationLog.Fatal(message, exception); }