Make "failed" log messages be warnings, not debugs
This commit is contained in:
parent
35f9900101
commit
02ed2293e6
@ -611,9 +611,9 @@ public class AppDetails extends ActionBarActivity implements ProgressListener, A
|
||||
Hasher hash = new Hasher("MD5", mInstalledSignature.toCharsString().getBytes());
|
||||
mInstalledSigID = hash.getHash();
|
||||
} catch (PackageManager.NameNotFoundException e) {
|
||||
Log.d(TAG, "Failed to get installed signature");
|
||||
Log.w(TAG, "Failed to get installed signature");
|
||||
} catch (NoSuchAlgorithmException e) {
|
||||
Log.d(TAG, "Failed to calculate signature MD5 sum");
|
||||
Log.w(TAG, "Failed to calculate signature MD5 sum");
|
||||
mInstalledSignature = null;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user