From 9e9c25dff7f2363a149818cd8741467bcf1422ed Mon Sep 17 00:00:00 2001 From: Nedyalko Nikolov Date: Thu, 16 Apr 2015 09:22:07 +0300 Subject: [PATCH] Removed debugging console log. --- camera/camera.ios.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/camera/camera.ios.ts b/camera/camera.ios.ts index cbd9c1764..e3b46da41 100644 --- a/camera/camera.ios.ts +++ b/camera/camera.ios.ts @@ -31,7 +31,6 @@ class UIImagePickerControllerDelegateImpl extends NSObject implements UIImagePic if (source) { var image = null; if (this._width || this._height) { - console.log("Image resized!!!"); var newSize = CGSizeMake(this._width, this._height); UIGraphicsBeginImageContextWithOptions(newSize, false, 0.0); source.drawInRect(CGRectMake(0, 0, newSize.width, newSize.height));