去掉部分调试日志

This commit is contained in:
Yun
2025-09-19 17:49:49 +08:00
parent f34e04f235
commit 5a51122289
+3 -2
View File
@@ -117,7 +117,7 @@ func (g *GlobalLock) Try() (bool, error) {
func (g *GlobalLock) Unlock() error { func (g *GlobalLock) Unlock() error {
// 已经关闭就不需要重复关闭 // 已经关闭就不需要重复关闭
if g.setOrGetClose() { if g.setOrGetClose() {
g.options.logger.Infof(g.ctx, "global lock already closed, key: %s, value: %s", g.uniqueKey, g.value) // g.options.logger.Infof(g.ctx, "global lock already closed, key: %s, value: %s", g.uniqueKey, g.value)
return nil return nil
} }
@@ -143,6 +143,7 @@ func (g *GlobalLock) Unlock() error {
if delCount, ok := resp.(int64); ok && delCount == 1 { if delCount, ok := resp.(int64); ok && delCount == 1 {
return nil return nil
} }
g.options.logger.Infof(g.ctx, "global unlock may have failed: %v, key: %s, value: %s", err, g.uniqueKey, g.value)
return fmt.Errorf("lock was already released or owned by another client") return fmt.Errorf("lock was already released or owned by another client")
} }
@@ -159,7 +160,7 @@ func (g *GlobalLock) startRefresh() {
case <-ticker.C: case <-ticker.C:
g.refreshExec() g.refreshExec()
case <-g.ctx.Done(): case <-g.ctx.Done():
g.options.logger.Infof(g.ctx, "global lock refresh canceled, key: %s, value: %s", g.uniqueKey, g.value) // g.options.logger.Infof(g.ctx, "global lock refresh canceled, key: %s, value: %s", g.uniqueKey, g.value)
g.Unlock() g.Unlock()
return return
} }