Merge pull request #66 from matias-casal/main

Fix: Correct logging in WhisperState+ModelManager to resolve compile error
This commit is contained in:
Prakash Joshi Pax 2025-04-23 08:14:31 +05:45 committed by GitHub
commit 224416730d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -303,7 +303,7 @@ extension WhisperState {
// MARK: - Helper Methods
private func logError(_ message: String, _ error: Error) {
messageLog += "\(message): \(error.localizedDescription)\n"
self.logger.error("\(message): \(error.localizedDescription)")
}
}