Skip to content

Commit 7087031

Browse files
committed
fix: date format in log
1 parent 7912d9a commit 7087031

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/RabbitCommon.ahk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,17 +191,17 @@ RabbitLogLimit(text, label, limit := 1) {
191191
}
192192
}
193193
RabbitError(text, location, limit := -1) {
194-
msg := Format("E{} {:5} {}] {}`r`n", FormatTime(, "yyyyMMDD HH:mm:ss "), ProcessExist(), location, text)
194+
msg := Format("E{} {:5} {}] {}`r`n", FormatTime(, "yyyyMMdd HH:mm:ss "), ProcessExist(), location, text)
195195
RabbitLogLimit(msg, location, limit)
196196
}
197197
RabbitInfo(text, location, limit := -1) {
198-
msg := Format("I{} {:5} {}] {}`r`n", FormatTime(, "yyyyMMDD HH:mm:ss "), ProcessExist(), location, text)
198+
msg := Format("I{} {:5} {}] {}`r`n", FormatTime(, "yyyyMMdd HH:mm:ss "), ProcessExist(), location, text)
199199
RabbitLogLimit(msg, location, limit)
200200
}
201201
RabbitDebug(text, location, limit := -1) {
202202
global RABBIT_VERSION
203203
if !SubStr(RABBIT_VERSION, 1, 3) = "dev"
204204
return
205-
msg := Format("D{} {:5} {}] {}`r`n", FormatTime(, "yyyyMMDD HH:mm:ss "), ProcessExist(), location, text)
205+
msg := Format("D{} {:5} {}] {}`r`n", FormatTime(, "yyyyMMdd HH:mm:ss "), ProcessExist(), location, text)
206206
RabbitLogLimit(msg, location, limit)
207207
}

0 commit comments

Comments
 (0)