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 cb3877a commit 7a7d735Copy full SHA for 7a7d735
Demo/Form1.cs
@@ -56,6 +56,7 @@ private void Initialize()
56
.CreateLogger();
57
58
// Intentional dead code for demonstration purposes.
59
+#pragma warning disable CS0162
60
if (false)
61
{
62
// You can also use fluent syntax to configure the sink like this:
@@ -72,6 +73,7 @@ private void Initialize()
72
73
.WriteTo.RichTextBox(richTextBox1, formatProvider: new CultureInfo("en-US"))
74
75
}
76
+#pragma warning restore CS0162
77
78
Log.Debug("Started logger.");
79
btnDispose.Enabled = true;
0 commit comments