//This is the default fallback action and always works
public static event Action<string, string?>? SystemTraceMessage;
//This works when I have control to subscribe to it, but I don't deep within the business logic.
public event Action<string, string>? SendTraceMessage;
//This is the default fallback action and always works
public static event Action<string, string?>? SystemTraceMessage;
//This works when I have control to subscribe to it, but I don't deep within the business logic.
public event Action<string, string>? SendTraceMessage;