Fixed .streamrole not updating in real time, closes #345

This commit is contained in:
Kwoth
2022-06-16 03:37:19 +02:00
parent 780eec62b3
commit a826f4245f
3 changed files with 148 additions and 60 deletions

View File

@@ -221,7 +221,7 @@ public static class Extensions
public static void Lap(this Stopwatch sw, string checkpoint)
{
Log.Information("Checkpoint {CheckPoint}: {Time}", checkpoint, sw.Elapsed.TotalMilliseconds);
Log.Information("Checkpoint {CheckPoint}: {Time}ms", checkpoint, sw.Elapsed.TotalMilliseconds);
sw.Restart();
}
}