- AddToActionsList(Level.DEBUG) method has been changed to only visible when ChBXDevLog is true to avoid DEVS always having it on.

- added Level.DEBUG logs throughout selenium and soak test. Due to having prior issues with selenium and Soaktest
- Bug fix in LDS.cs this stops a crossthread exception as its trying to write to AddToActionsList before it loads.
This commit is contained in:
2026-01-16 11:42:34 +00:00
parent 4dace8edef
commit 8770469fd4
5 changed files with 75 additions and 7 deletions

15
AiQ_GUI.Designer.cs generated
View File

@@ -152,6 +152,7 @@ namespace AiQ_GUI
TimerFlash = new System.Windows.Forms.Timer(components);
RhTxBxActions = new RichTextBox();
CbBxCamType = new ComboBox();
ChBxDevLog = new CheckBox();
((System.ComponentModel.ISupportInitialize)PicBxMAV).BeginInit();
((System.ComponentModel.ISupportInitialize)PicBxAiQ).BeginInit();
((System.ComponentModel.ISupportInitialize)PicBxIRF2).BeginInit();
@@ -1936,12 +1937,25 @@ namespace AiQ_GUI
CbBxCamType.TabIndex = 241;
CbBxCamType.SelectedIndexChanged += CbBxCamType_SelectedIndexChanged;
//
// ChBxDevLog
//
ChBxDevLog.AutoSize = true;
ChBxDevLog.BackColor = Color.FromArgb(53, 51, 64);
ChBxDevLog.Location = new Point(430, 359);
ChBxDevLog.Name = "ChBxDevLog";
ChBxDevLog.Size = new Size(74, 19);
ChBxDevLog.TabIndex = 242;
ChBxDevLog.Text = "Dev Logs";
ChBxDevLog.UseVisualStyleBackColor = false;
ChBxDevLog.Visible = false;
//
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackgroundImage = Properties.Resources.homepage_banner;
ClientSize = new Size(932, 970);
Controls.Add(ChBxDevLog);
Controls.Add(RhTxBxActions);
Controls.Add(CbBxCamType);
Controls.Add(LblGUIVers);
@@ -2148,5 +2162,6 @@ namespace AiQ_GUI
public PictureBox NightImgPcbx;
public PictureBox DayImgPcbx;
private Button BtnPlayVLC;
private CheckBox ChBxDevLog;
}
}