From cb81c1a5a93a9ebd3a917dd26fe9a54c034618ff Mon Sep 17 00:00:00 2001 From: Parth Tamane Date: Tue, 9 Feb 2021 15:31:39 +0530 Subject: [PATCH] Update README.md Fixing inaccessibility caused due to marking `verbose` as private --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 393155c..30c42fc 100644 --- a/README.md +++ b/README.md @@ -483,7 +483,7 @@ First, you must create a `LogLevel` extension and add your custom values. ```swift extension LogLevel { - private static var verbose = LogLevel(rawValue: 0b00000000_00000000_00000001_00000000) + fileprivate static var verbose = LogLevel(rawValue: 0b00000000_00000000_00000001_00000000) } ```