From 31e33a0e2d423729bf265f4510c6ae3f3ad1b275 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 23 Jul 2024 16:21:40 +0800 Subject: [PATCH] 1 --- dbpool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbpool.go b/dbpool.go index ddcb364..3cdeea1 100644 --- a/dbpool.go +++ b/dbpool.go @@ -61,7 +61,7 @@ func (this *dbPool) init(style DBStyle) { func (this *dbPool) outputMonitorLog() { for { if this.maxIdxMonitorProgHash.GetSize() > 0 { - GetSysLog().Info("--------------------------------------------------------------------------------------") + GetSysLog().Info("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<") this.maxIdxMonitorProgHash.Range(func (k string, ele *maxIdxMonitorProg) bool { ele.itemHash.Range(func (k1 string, ele2 *maxIdxMonitorProgItem) bool { GetSysLog().Info("%s.%s.%s maxIdx:%d lastIdx:%d exec:%d ok:%d err:%d abort:%d", @@ -78,7 +78,7 @@ func (this *dbPool) outputMonitorLog() { }) return true }) - GetSysLog().Info("---------------------------------------------------------------------------------------") + GetSysLog().Info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>") } time.Sleep(time.Second * 10) }