about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/Attributes/TraceAttribute.cs
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-06-30 03:36:58 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-06-30 03:36:58 +0200
commitbb8c2637af3b7982e7a4b2fd15e2fbec613d0848 (patch)
treeb8075ba7e507aad3f96f354712ad920ac421e474 /MatrixRoomUtils.Core/Attributes/TraceAttribute.cs
parentUpdate stuff (diff)
downloadMatrixUtils-bb8c2637af3b7982e7a4b2fd15e2fbec613d0848.tar.xz
Todays progress
Diffstat (limited to 'MatrixRoomUtils.Core/Attributes/TraceAttribute.cs')
-rw-r--r--MatrixRoomUtils.Core/Attributes/TraceAttribute.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/MatrixRoomUtils.Core/Attributes/TraceAttribute.cs b/MatrixRoomUtils.Core/Attributes/TraceAttribute.cs
deleted file mode 100644
index 34a0b67..0000000
--- a/MatrixRoomUtils.Core/Attributes/TraceAttribute.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using System.Runtime.CompilerServices;
-
-namespace MatrixRoomUtils.Core.Attributes; 
-
-[AttributeUsage(AttributeTargets.All)]
-public class TraceAttribute : Attribute {
-    public TraceAttribute([CallerMemberName] string callerName = "") {
-        Console.WriteLine($"{callerName} called!");
-    }
-}
\ No newline at end of file