Remove grey overlay and reduce logging noise

- Removed grey background overlay during sidebar slide-over for cleaner UI
- Removed excessive logging while keeping critical error/security logs
- Kept only: error conditions, connection events, panic mode, security events
- Significantly reduced console noise for better production readiness
This commit is contained in:
jack
2025-07-04 12:28:00 +02:00
parent f77cec3fb2
commit 2cd8443292
5 changed files with 96 additions and 95 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ class EncryptionService {
let identityKey = try Curve25519.Signing.PublicKey(rawRepresentation: identityKeyData)
peerIdentityKeys[peerID] = identityKey
print("[CRYPTO] Stored all three keys for peer \(peerID)")
// Stored all three keys for peer
// Generate shared secret for encryption
if let publicKey = peerPublicKeys[peerID] {