diff --git a/src/Avalonia.Base/Logging/ILogSink.cs b/src/Avalonia.Base/Logging/ILogSink.cs
index 27558ba0ee6..60709776c6f 100644
--- a/src/Avalonia.Base/Logging/ILogSink.cs
+++ b/src/Avalonia.Base/Logging/ILogSink.cs
@@ -26,57 +26,6 @@ void Log(
object? source,
string messageTemplate);
- ///
- /// Logs an event.
- ///
- /// The log event level.
- /// The area that the event originates.
- /// The object from which the event originates.
- /// The message template.
- /// Message property value.
- void Log(
- LogEventLevel level,
- string area,
- object? source,
- string messageTemplate,
- T0 propertyValue0);
-
- ///
- /// Logs an event.
- ///
- /// The log event level.
- /// The area that the event originates.
- /// The object from which the event originates.
- /// The message template.
- /// Message property value.
- /// Message property value.
- void Log(
- LogEventLevel level,
- string area,
- object? source,
- string messageTemplate,
- T0 propertyValue0,
- T1 propertyValue1);
-
- ///
- /// Logs an event.
- ///
- /// The log event level.
- /// The area that the event originates.
- /// The object from which the event originates.
- /// The message template.
- /// Message property value.
- /// Message property value.
- /// Message property value.
- void Log(
- LogEventLevel level,
- string area,
- object? source,
- string messageTemplate,
- T0 propertyValue0,
- T1 propertyValue1,
- T2 propertyValue2);
-
///
/// Logs a new event.
///
diff --git a/src/Avalonia.Base/Logging/TraceLogSink.cs b/src/Avalonia.Base/Logging/TraceLogSink.cs
index 02ed191d2c7..05e4b8bc5ae 100644
--- a/src/Avalonia.Base/Logging/TraceLogSink.cs
+++ b/src/Avalonia.Base/Logging/TraceLogSink.cs
@@ -28,31 +28,7 @@ public void Log(LogEventLevel level, string area, object? source, string message
{
if (IsEnabled(level, area))
{
- Trace.WriteLine(Format