From 40342ba30459b9a72a4d342be3f3de732ec42eec Mon Sep 17 00:00:00 2001 From: Aram Peres <6775216+aramperes@users.noreply.github.com> Date: Tue, 19 Dec 2023 06:07:18 -0500 Subject: [PATCH] Fix README example for Debugf (#1153) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e627d794a..ef08eb0aa6 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ Support for the ClickHouse protocol advanced features using `Context`: }, Debug: true, Debugf: func(format string, v ...any) { - fmt.Printf(format, v) + fmt.Printf(format+"\n", v...) }, Settings: clickhouse.Settings{ "max_execution_time": 60,