File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ struct Logging {
3838
3939 /// The default logger that is visible for all users. Note: we shouldn't be using anything lower
4040 /// than `.notice`.
41- static var `default` = Logger ( subsystem: subsystem, category: defaultCategory)
41+ static let `default` = Logger ( subsystem: subsystem, category: defaultCategory)
4242
4343 /// A non default
44- static var network : Logger = {
44+ static let network : Logger = {
4545 if additionalLoggingEnabled ( ) {
4646 return Logger ( subsystem: subsystem, category: " NetworkResponse " )
4747 } else {
@@ -51,7 +51,7 @@ struct Logging {
5151 } ( )
5252
5353 ///
54- static var verbose : Logger = {
54+ static let verbose : Logger = {
5555 if additionalLoggingEnabled ( ) {
5656 return Logger ( subsystem: subsystem, category: defaultCategory)
5757 } else {
You can’t perform that action at this time.
0 commit comments