mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
13 lines
248 B
C#
13 lines
248 B
C#
using System.Diagnostics;
|
|
|
|
namespace Utils
|
|
{
|
|
public class DebugStack
|
|
{
|
|
public static string GetCallerName(int skipFrames = 0)
|
|
{
|
|
return new StackFrame(2 + skipFrames, true).GetMethod()!.Name;
|
|
}
|
|
}
|
|
}
|