diff --git a/Source/Locksmith.swift b/Source/Locksmith.swift index 33497c0..365e1fc 100644 --- a/Source/Locksmith.swift +++ b/Source/Locksmith.swift @@ -480,7 +480,6 @@ public extension ReadableSecureStorable where Self : GenericPasswordSecureStorab return nil } } catch { - print(error) return nil } } @@ -495,7 +494,6 @@ public extension ReadableSecureStorable where Self : InternetPasswordSecureStora return nil } } catch { - print(error) return nil } } diff --git a/Source/LocksmithSecurityClass.swift b/Source/LocksmithSecurityClass.swift index fd358e1..f3fb75b 100644 --- a/Source/LocksmithSecurityClass.swift +++ b/Source/LocksmithSecurityClass.swift @@ -18,7 +18,6 @@ public enum LocksmithSecurityClass: RawRepresentable { case String(kSecClassIdentity): self = Identity default: - print("SecurityClass: Invalid raw value provided. Defaulting to .GenericPassword") self = GenericPassword } }