diff options
| author | campbeb <bpcampbell@gmail.com> | 2013-06-05 17:04:56 -1000 |
|---|---|---|
| committer | campbeb <bpcampbell@gmail.com> | 2013-06-05 17:24:11 -1000 |
| commit | b610ce7289c4cfe9d8a040d9cc4aadee2838700d (patch) | |
| tree | 8a9a8e09c430ae96fe70b4ca3b0c5f437faa9171 /main/src/cgeo/geocaching/utils | |
| parent | e657d819d23f2e2749be4499ba2d5e9862c4a6b0 (diff) | |
| download | cgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.zip cgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.tar.gz cgeo-b610ce7289c4cfe9d8a040d9cc4aadee2838700d.tar.bz2 | |
Correct log messages to account for refactoring
Diffstat (limited to 'main/src/cgeo/geocaching/utils')
| -rw-r--r-- | main/src/cgeo/geocaching/utils/CryptUtils.java | 6 | ||||
| -rw-r--r-- | main/src/cgeo/geocaching/utils/ImageHelper.java | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/main/src/cgeo/geocaching/utils/CryptUtils.java b/main/src/cgeo/geocaching/utils/CryptUtils.java index df2baa0..5ddae96 100644 --- a/main/src/cgeo/geocaching/utils/CryptUtils.java +++ b/main/src/cgeo/geocaching/utils/CryptUtils.java @@ -71,7 +71,7 @@ public final class CryptUtils { digest.update(text.getBytes(), 0, text.length()); hashed = new BigInteger(1, digest.digest()).toString(16); } catch (Exception e) { - Log.e("cgBase.md5", e); + Log.e("CryptUtils.md5", e); } return hashed; @@ -85,7 +85,7 @@ public final class CryptUtils { digest.update(text.getBytes(), 0, text.length()); hashed = new BigInteger(1, digest.digest()).toString(16); } catch (Exception e) { - Log.e("cgBase.sha1", e); + Log.e("CryptUtils.sha1", e); } return hashed; @@ -100,7 +100,7 @@ public final class CryptUtils { mac.init(secretKeySpec); macBytes = mac.doFinal(text.getBytes()); } catch (Exception e) { - Log.e("cgBase.hashHmac", e); + Log.e("CryptUtils.hashHmac", e); } return macBytes; diff --git a/main/src/cgeo/geocaching/utils/ImageHelper.java b/main/src/cgeo/geocaching/utils/ImageHelper.java index ec77018..a01e836 100644 --- a/main/src/cgeo/geocaching/utils/ImageHelper.java +++ b/main/src/cgeo/geocaching/utils/ImageHelper.java @@ -76,7 +76,7 @@ public class ImageHelper { bos.flush(); bos.close(); } catch (Exception e) { - Log.e("Image", e); + Log.e("ImageHelper.storeBitmap", e); } } } |
