From d63afd20a0099bd7773c446121e314d95109a257 Mon Sep 17 00:00:00 2001 From: Traun Leyden Date: Sat, 8 Feb 2025 14:28:56 +0100 Subject: [PATCH] Update README.md example to match expected args order I'm getting an xcode error when using the example as-is. This should fix it. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b1b081d..a28cb94 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,9 @@ LoggingSystem.bootstrap { label in SupabaseLogHandler( label: label, config: SupabaseLogConfig( - table: "logs", // optional table name to use, defaults to "logs". supabaseURL: "https://your-supabase-project-url.com/rest/v1", supabaseAnonKey: "your-supabase-anon-key", + table: "logs", // optional table name to use, defaults to "logs". isDebug: true // optional flag to turn on/off internal logging, defaults to "false". ) )