From 0906ee79e093aadae8402f2e47f3f60b74d024a5 Mon Sep 17 00:00:00 2001 From: Aleksandr Razumov Date: Tue, 28 Dec 2021 01:44:16 +0300 Subject: [PATCH] fix: set DEBUG to "Waiting for column info" msg --- query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query.go b/query.go index c8714a82..5004775a 100644 --- a/query.go +++ b/query.go @@ -617,7 +617,7 @@ func (c *Client) Do(ctx context.Context, q Query) error { } var info proto.ColInfoInput if colInfo != nil { - c.lg.Info("Waiting for column info") + c.lg.Debug("Waiting for column info") select { case <-ctx.Done(): return ctx.Err()