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/maps/CachesOverlay.java | |
| 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/maps/CachesOverlay.java')
| -rw-r--r-- | main/src/cgeo/geocaching/maps/CachesOverlay.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/maps/CachesOverlay.java b/main/src/cgeo/geocaching/maps/CachesOverlay.java index 82d8707..f1dd9b3 100644 --- a/main/src/cgeo/geocaching/maps/CachesOverlay.java +++ b/main/src/cgeo/geocaching/maps/CachesOverlay.java @@ -244,7 +244,7 @@ public class CachesOverlay extends AbstractItemizedOverlay { progress.dismiss(); } catch (Exception e) { - Log.e("cgMapOverlay.onTap", e); + Log.e("CachesOverlay.onTap", e); if (progress != null) { progress.dismiss(); } @@ -258,7 +258,7 @@ public class CachesOverlay extends AbstractItemizedOverlay { try { return items.get(index); } catch (Exception e) { - Log.e("cgMapOverlay.createItem", e); + Log.e("CachesOverlay.createItem", e); } return null; @@ -269,7 +269,7 @@ public class CachesOverlay extends AbstractItemizedOverlay { try { return items.size(); } catch (Exception e) { - Log.e("cgMapOverlay.size", e); + Log.e("CachesOverlay.size", e); } return 0; |
