From fb3c1042e0c5376bf24386b3439121ccce965c49 Mon Sep 17 00:00:00 2001 From: John Mclaren Date: Wed, 7 Aug 2024 15:54:32 -0400 Subject: [PATCH] cleanup log settings --- SimpleBackup.au3 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SimpleBackup.au3 b/SimpleBackup.au3 index be63f9a..f7c867a 100644 --- a/SimpleBackup.au3 +++ b/SimpleBackup.au3 @@ -43,9 +43,7 @@ Global $TitleVersion = $Title & " v" & StringTrimLeft($Version, StringInStr($Ver ; Setup Logging _Console_Attach() ; If it was launched from a console, attach to that console -Global $LogToFile = 0 Global $LogFileMaxSize = 512 -Global $LogWindowStart = 1 Global $LogLevel = 1 If @Compiled Then $LogFullPath = StringTrimRight(@ScriptFullPath, 4) & ".log" @@ -53,6 +51,7 @@ If @Compiled Then Else $LogLevel = 3 Global $LogTitle = "Log - " & $Title + Global $LogWindowStart = 1 EndIf _Log("Starting " & $TitleVersion)