about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/Attributes/TraceAttribute.cs
blob: 34a0b6774a227784187ed705414a2078df336de8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Runtime.CompilerServices;

namespace MatrixRoomUtils.Core.Attributes; 

[AttributeUsage(AttributeTargets.All)]
public class TraceAttribute : Attribute {
    public TraceAttribute([CallerMemberName] string callerName = "") {
        Console.WriteLine($"{callerName} called!");
    }
}