From e01de2e5076490013330a6dba91f1791bf9740d3 Mon Sep 17 00:00:00 2001 From: Tanjin Xu Date: Wed, 6 Nov 2024 11:32:32 -0800 Subject: [PATCH] v15 debug --- go/vt/vtgate/tabletgateway.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/go/vt/vtgate/tabletgateway.go b/go/vt/vtgate/tabletgateway.go index 98867424770..a8dd38af02c 100644 --- a/go/vt/vtgate/tabletgateway.go +++ b/go/vt/vtgate/tabletgateway.go @@ -514,7 +514,8 @@ func (gw *TabletGateway) updateDefaultConnCollation(tablet *topodatapb.Tablet) { return } if atomic.LoadUint32(&gw.defaultConnCollation) != tablet.DefaultConnCollation { - log.Warning("this Vitess cluster has tablets with different default connection collations") + log.Warningf("this Vitess cluster has tablets with different default connection collations: gw: %v, tablet:%v, host:%v", + atomic.LoadUint32(&gw.defaultConnCollation), tablet.DefaultConnCollation, tablet.Hostname) } }