We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1381248 commit 835e409Copy full SHA for 835e409
Flow.Launcher.Infrastructure/Logger/Log.cs
@@ -135,6 +135,15 @@ private static string CheckClassAndMessageAndReturnFullClassWithMethod(string cl
135
return className;
136
}
137
138
+#if !DEBUG
139
+ private static void ExceptionInternal(string classAndMethod, string message, System.Exception e)
140
+ {
141
+ var logger = LogManager.GetLogger(classAndMethod);
142
+
143
+ logger.Error(e, message);
144
+ }
145
+#endif
146
147
private static void LogInternal(string message, LogLevel level)
148
{
149
if (FormatValid(message))
0 commit comments