diff --git a/src/Artemis.UI/SerilogAvaloniaSink.cs b/src/Artemis.UI/SerilogAvaloniaSink.cs index b8dea3fcd..f590c4b06 100644 --- a/src/Artemis.UI/SerilogAvaloniaSink.cs +++ b/src/Artemis.UI/SerilogAvaloniaSink.cs @@ -22,13 +22,8 @@ public class SerilogAvaloniaSink : ILogSink { SerilogLogLevel logLevel = GetSerilogLogLevel(level, area); - #if DEBUG // Except with binding errors, ignore anything that is information or lower - return true; -#else - // Ignore binding errors in release builds, shoo return area != "Binding" && logLevel > SerilogLogLevel.Information && _logger.IsEnabled(logLevel); -#endif } ///