From 24a6809e44e0ea1cbcc1af9b8f01ed3177a8df45 Mon Sep 17 00:00:00 2001 From: Joannis Orlandos Date: Tue, 11 Mar 2025 16:46:27 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc56953b..8b5ebdc7 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ await withTaskGroup(of: Void.self) { taskGroup in Once a client is running, queries can be sent to the server. This is straightforward: ```swift -let rows = try await client.query("SELECT id, username, birthday FROM users") +let rows = try await client.query("SELECT id, username, birthday FROM users", logger: Logger(label: "my-example-logger")) ``` The query will return a [`PostgresRowSequence`], which is an AsyncSequence of [`PostgresRow`]s.