Changed maximum size of session log

This commit is contained in:
Michael J. Seiferling
2015-12-29 22:35:56 -06:00
parent 88e0fa9afd
commit 4f45239e90
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -921,7 +921,7 @@ Public Class frmMain
Me.Invoke(d, New Object() {sLogUpdate, bTrayUpdate, objIcon, bTimeStamp})
Else
'Clear the log if we are approaching the limit
If txtLog.TextLength > 32000 Then
If txtLog.TextLength > 16770000 Then
txtLog.Text = String.Empty
End If