public void ClearSerialLogs()
 {
     TestLogger.Log($"*** Clearing serial logs ({this.serialLogs.Count}) ***");
     this.serialLogs.Clear();
 }
 void AppendSerialLog(string message)
 {
     TestLogger.Log($"[SERIAL] {message}");
     this.serialLogs.Enqueue(message);
 }