summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2019-12-18 12:13:11 -0500
committerNicoleYarroch <nicole@livio.io>2019-12-18 12:13:11 -0500
commita49e65196a3a8e0db18ca3b21c7e7c57e8092585 (patch)
tree9421fb8aab63b91efd1e98effe5ac0c887e9cc7b
parenta01243d8b4136cefb53ab35b3240740ae690298c (diff)
downloadsdl_ios-a49e65196a3a8e0db18ca3b21c7e7c57e8092585.tar.gz
Reverted swift app globalLogLevel
-rw-r--r--Example Apps/Example Swift/ProxyManager.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/Example Apps/Example Swift/ProxyManager.swift b/Example Apps/Example Swift/ProxyManager.swift
index cfc7c6b02..ac3913955 100644
--- a/Example Apps/Example Swift/ProxyManager.swift
+++ b/Example Apps/Example Swift/ProxyManager.swift
@@ -120,7 +120,7 @@ private extension ProxyManager {
let exampleLogFileModule = SDLLogFileModule(name: "SDL Swift Example App", files: ["ProxyManager", "AlertManager", "AudioManager", "ButtonManager", "MenuManager", "PerformInteractionManager", "RPCPermissionsManager", "VehicleDataManager"])
logConfig.modules.insert(exampleLogFileModule)
_ = logConfig.targets.insert(SDLLogTargetFile()) // Logs to file
- logConfig.globalLogLevel = .verbose // Filters the logs
+ logConfig.globalLogLevel = .debug // Filters the logs
return logConfig
}