Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
inetic committed Jul 24, 2024
1 parent 8874880 commit d7d09df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bindings/dart/lib/internal/message_matcher.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class MessageMatcher {
final message = deserialize(bytes.sublist(8));

// DEBUG
print('recv: id: $id, message: $message');
//print('recv: id: $id, message: $message');

if (message is! Map) {
return;
Expand Down Expand Up @@ -103,7 +103,6 @@ class MessageMatcher {
}

void _handleResponseSuccess(Completer<Object?> completer, Object? payload) {
print(">>>>>>>>>>>>>>>>> received $payload");
if (payload == "none") {
completer.complete(null);
return;
Expand Down

0 comments on commit d7d09df

Please sign in to comment.