removed e.printStackTrace from several places

This commit is contained in:
Adithya Abraham Philip
2015-07-03 20:46:16 +05:30
parent ad00a511d6
commit 6d9da28ead
5 changed files with 13 additions and 8 deletions
@@ -96,7 +96,7 @@ public class PgpDecryptVerify extends BaseOperation<PgpDecryptVerifyInputParcel>
long inputSize = FileHelper.getFileSize(mContext, input.getInputUri(), 0);
inputData = new InputData(inputStream, inputSize);
} catch (FileNotFoundException e) {
e.printStackTrace();
Log.e(Constants.TAG, "File not found at " + input.getInputUri(), e);
return null;
}
}