Skip to content

Commit cfed5ab

Browse files
authored
Remove excessive logging of loading certificates (#12)
1 parent a8ec83f commit cfed5ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SkipAndroidBridge/AndroidBridgeBootstrap.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ private func bootstrapSSLCertificates(fromCertficateFolders certsFolders: [Strin
167167
if (try? certsFolderURL.resourceValues(forKeys: [.isDirectoryKey]).isDirectory) != true { continue }
168168
let certURLs = try FileManager.default.contentsOfDirectory(at: certsFolderURL, includingPropertiesForKeys: [.isRegularFileKey, .isReadableKey])
169169
for certURL in certURLs {
170-
logger.debug("bootstrapSSLCertificates: certURL=\(certURL)")
170+
//logger.debug("bootstrapSSLCertificates: certURL=\(certURL)")
171171
// certificate files have names like "53a1b57a.0"
172172
if certURL.pathExtension != "0" { continue }
173173
do {

0 commit comments

Comments
 (0)