@@ -191,17 +191,17 @@ RabbitLogLimit(text, label, limit := 1) {
191191 }
192192}
193193RabbitError (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}
197197RabbitInfo (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}
201201RabbitDebug (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