From 60bdeacd0d9219b05de4a496a7f62b016d28e5d1 Mon Sep 17 00:00:00 2001 From: Aram Peres <6775216+aramperes@users.noreply.github.com> Date: Sun, 3 Dec 2023 22:50:17 -0500 Subject: [PATCH] Fix README example for Debugf --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d27f75271e..79b963cde7 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,