Procházet zdrojové kódy

log warning if loading the audio file fails

cyberta před 4 roky
rodič
revize
8e628d2cf0
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      deltachat-ios/Chat/AudioController.swift

+ 2 - 0
deltachat-ios/Chat/AudioController.swift

@@ -106,6 +106,8 @@ open class AudioController: NSObject, AVAudioPlayerDelegate, AudioMessageCellDel
                     DispatchQueue.main.async {
                         successHandler(messageId, Double(durationInSeconds))
                     }
+                case .failed:
+                    logger.warning("loading audio message \(messageId) failed: \(String(describing: error?.localizedDescription))")
                 default: break
                 }
             }