From 5f816304f90eb949b0a8e2177c68933f59959f92 Mon Sep 17 00:00:00 2001 From: "LamTrinh.Dev" Date: Wed, 13 Nov 2024 20:38:45 +0700 Subject: [PATCH] Enhance swift codeblock at README.md (#327) --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d6f667..974cbf9 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,9 @@ public protocol LogHandler { Instructing `SwiftLog` to use your logging backend as the one the whole application (including all libraries) should use is very simple: - LoggingSystem.bootstrap(MyLogHandler.init) +```swift +LoggingSystem.bootstrap(MyLogHandler.init) +``` ### Implementation considerations