From 23a687bb5730c60c4e11018296e25472f9aa3eee Mon Sep 17 00:00:00 2001 From: Maartz Date: Sun, 2 Jul 2023 14:00:32 +0200 Subject: [PATCH] Update README.md Fix some typos --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9f5865f..d9001ab 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

Colorful, flexible, lightweight logging for Swift 3, Swift 4 & Swift 5.
Great for development & relesae with support for Console, file & cloud destinations for server-side Swift.

+

Colorful, flexible, lightweight logging for Swift 3, Swift 4 & Swift 5.
Great for development & release with support for Console, file & cloud destinations for server-side Swift.

Language Swift 2, 3, 4 & 5 CircleCI

@@ -24,7 +24,7 @@ ### Google Cloud & More -You can fully customize your log format, turn it into JSON, or create your own destinations. For example our [Google Cloud Destination](https://github.com/SwiftyBeaver/SwiftyBeaver/blob/master/Sources/GoogleCloudDestination.swift) is just another customized logging format which adds the powerful functionality of automatic server-side Swift logging when hosted on Google Cloud Platform. +You can fully customize your log format, turn it into JSON, or create your own destinations. For example, our [Google Cloud Destination](https://github.com/SwiftyBeaver/SwiftyBeaver/blob/master/Sources/GoogleCloudDestination.swift) is just another customized logging format that adds the powerful functionality of automatic server-side Swift logging when hosted on Google Cloud Platform.
@@ -127,7 +127,7 @@ let log = SwiftyBeaver.self ``` -At the the beginning of your `AppDelegate:didFinishLaunchingWithOptions()` add the SwiftyBeaver log destinations (console, file, etc.), optionally adjust the [log format](http://docs.swiftybeaver.com/article/20-custom-format) and then you can already do the following log level calls globally: +At the beginning of your `AppDelegate:didFinishLaunchingWithOptions()` add the SwiftyBeaver log destinations (console, file, etc.), optionally adjust the [log format](http://docs.swiftybeaver.com/article/20-custom-format) and then you can already do the following log level calls globally: ```Swift // add log destinations. at least one is needed! @@ -168,7 +168,7 @@ log.info("my data", context: [1, "a", 2]) // "INFO: my data [1, \"a\", 2]" ## Server-side Swift -We ❤️ server-side Swift 4 & 5 and SwiftyBeaver supports it **out-of-the-box**! Try for yourself and run SwiftyBeaver inside a Ubuntu Docker container. Just install Docker and then go to your the project folder on macOS or Ubuntu and type: +We ❤️ server-side Swift 4 & 5 and SwiftyBeaver support it **out-of-the-box**! Try for yourself and run SwiftyBeaver inside a Ubuntu Docker container. Just install Docker and then go to your project folder on macOS or Ubuntu and type: ```shell # create docker image, build SwiftyBeaver and run unit tests