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 {
38
38
39
39
/// The default logger that is visible for all users. Note: we shouldn't be using anything lower
40
40
/// than `.notice`.
41
- static var `default` = Logger ( subsystem: subsystem, category: defaultCategory)
41
+ static let `default` = Logger ( subsystem: subsystem, category: defaultCategory)
42
42
43
43
/// A non default
44
- static var network : Logger = {
44
+ static let network : Logger = {
45
45
if additionalLoggingEnabled ( ) {
46
46
return Logger ( subsystem: subsystem, category: " NetworkResponse " )
47
47
} else {
@@ -51,7 +51,7 @@ struct Logging {
51
51
} ( )
52
52
53
53
///
54
- static var verbose : Logger = {
54
+ static let verbose : Logger = {
55
55
if additionalLoggingEnabled ( ) {
56
56
return Logger ( subsystem: subsystem, category: defaultCategory)
57
57
} else {
You can’t perform that action at this time.
0 commit comments