thomasrea0113
Results
1
issues of
thomasrea0113
```csharp public class TestRegistry : Registry { public TestRegistry() { Schedule(() => { while (true) { var log = NLog.LogManager.GetLogger("Logger1"); log.Info("sleeping 1..."); Thread.Sleep(100); } }) .WithName("Infinite Task") .NonReentrant() .ToRunNow(); Schedule(()...
bug