Print api_version if matching

This commit is contained in:
Markus Doits 2011-01-18 22:12:47 +00:00
parent fd24d128fe
commit 209b300638

View File

@ -75,6 +75,8 @@ public class ApgCon {
} else if (inf.metaData.getInt("api_version") != api_version) { } else if (inf.metaData.getInt("api_version") != api_version) {
Log.w(TAG, "Found ApgService API version" + inf.metaData.getInt("api_version") + " but exspected " + api_version); Log.w(TAG, "Found ApgService API version" + inf.metaData.getInt("api_version") + " but exspected " + api_version);
Log.w(TAG, "This probably won't work!"); Log.w(TAG, "This probably won't work!");
} else {
Log.v(TAG, "Found api_version "+api_version+", everything should work");
} }
} }
} }