Skip to content

Commit 951c50b

Browse files
refactor: remove NSLogs
1 parent 691b6fa commit 951c50b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

ios/RnExecutorch/OCR.mm

-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ of different sizes (e.g. large - 512x64, medium - 256x64, small - 128x64).
8787
desiredHeight:recognizerImageSize];
8888
resolve(result);
8989
} @catch (NSException *exception) {
90-
NSLog(@"%@", exception.reason);
9190
reject(@"forward_error",
9291
[NSString stringWithFormat:@"%@", exception.reason], nil);
9392
}

ios/RnExecutorch/VerticalOCR.mm

-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ - (void)forward:(NSString *)input
104104
text = [text stringByAppendingString:decodedText[0]];
105105
confidenceScore = @([confidenceScore floatValue] + [[recognitionResult objectAtIndex:1] floatValue]);
106106
}else{
107-
NSLog(@"width: %d, height: %d", croppedCharacter.cols, croppedCharacter.rows);
108107
croppedCharacters.push_back(croppedCharacter);
109108
}
110109
}

0 commit comments

Comments
 (0)