From 9aa9a8e4386060c6d31e6a33a0559d787a4c4c4c Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 23 Jul 2024 16:04:12 +0800 Subject: [PATCH] 1 --- dbpool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbpool.go b/dbpool.go index b2752b5..fc8a428 100644 --- a/dbpool.go +++ b/dbpool.go @@ -53,7 +53,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 *int64) bool { GetSysLog().Info("%s.%s.%s maxIdx:%d lastIdx:%d", @@ -66,7 +66,7 @@ func (this *dbPool) outputMonitorLog() { }) return true }) - GetSysLog().Info("-------------------------------------------------------------") + GetSysLog().Info("---------------------------------------------------------------------------------------") } time.Sleep(time.Second * 10) }