Skip to content

Commit

Permalink
under investigation
Browse files Browse the repository at this point in the history
  • Loading branch information
dhq-boiler committed Dec 31, 2022
1 parent 6acab38 commit fe6e508
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions boilersGraphics/Helpers/AssemblyErrorLogAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using NLog;

#define DEBUG

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

namespace boilersGraphics.Helpers
{
Expand All @@ -12,7 +11,7 @@ public class AssemblyErrorLogAttribute : Attribute
{
public AssemblyErrorLogAttribute(string log)
{
Console.Error.WriteLine($"output by AssemblyErrorLogAttribute : {log}");
Debug.Fail(log);
}
}
}

0 comments on commit fe6e508

Please sign in to comment.