Skip to content

Commit

Permalink
fix(darwin): Remove print on conversion error.
Browse files Browse the repository at this point in the history
fixes #358
  • Loading branch information
llfbandit committed Aug 3, 2024
1 parent c422bd0 commit d338931
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions record_darwin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.1.2
* fix: Remove print on conversion error.

## 1.1.1
* fix: Add swift version info to workaround compilation issues.
* fix(iOS): Enabling auto gain & echo cancel.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ class RecorderStreamDelegate: NSObject, AudioRecordingStreamDelegate {
var error: NSError? = nil
converter.convert(to: convertedBuffer, error: &error, withInputFrom: inputCallback)
if let error = error {
print(error.localizedDescription)
return
}

Expand Down
2 changes: 1 addition & 1 deletion record_darwin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: record_darwin
description: iOS and macOS implementations for record package called by record_platform_interface.
version: 1.1.1
version: 1.1.2
homepage: https://github.com/llfbandit/record/tree/master/record_darwin

environment:
Expand Down

0 comments on commit d338931

Please sign in to comment.