Get rid of unnecessary debug statement

This commit is contained in:
Joshua Fuhs 2012-11-25 09:08:04 -05:00
parent af151b93a9
commit 4b5c74861a
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ Config_restoreConfig(filename) {
Loop, READ, %filename%
If (SubStr(A_LoopReadLine, 1, 7) = "Config_") {
Log_msg("Processing line: " . A_LoopReadLine)
;Log_msg("Processing line: " . A_LoopReadLine)
i := InStr(A_LoopReadLine, "=")
var := SubStr(A_LoopReadLine, 1, i - 1)
val := SubStr(A_LoopReadLine, i + 1)