aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2012-12-19 22:17:20 +0100
committerSamuel Tardieu <sam@rfc1149.net>2012-12-19 22:46:20 +0100
commit6c67038cf6a847381c4d2f94d4bcae24f97f123a (patch)
treefe9fa93aee9a7821b23c371137d693219fb1ee35
parent160f50c9a93c425502bd5a79d759e7cb5b2d79cc (diff)
downloadcgeo-6c67038cf6a847381c4d2f94d4bcae24f97f123a.zip
cgeo-6c67038cf6a847381c4d2f94d4bcae24f97f123a.tar.gz
cgeo-6c67038cf6a847381c4d2f94d4bcae24f97f123a.tar.bz2
Do not err when a cache is not in the database
Fresh caches are not in the database to begin with, this is not an error, at most an information.
-rw-r--r--main/src/cgeo/geocaching/cgData.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgData.java b/main/src/cgeo/geocaching/cgData.java
index 1d275e6..78611b8 100644
--- a/main/src/cgeo/geocaching/cgData.java
+++ b/main/src/cgeo/geocaching/cgData.java
@@ -1435,7 +1435,7 @@ public class cgData {
}
if (remaining.size() >= 1) {
- Log.e("cgData.loadCaches(" + remaining.toString() + ") failed");
+ Log.i("cgData.loadCaches(" + remaining.toString() + ") failed");
}
return result;
}