Bug 710864 - (Cleanup) Fix up incorrect logtags. r=blassey

This commit is contained in:
Kartikaya Gupta 2011-12-15 10:46:36 -05:00
parent 352c9162cb
commit a0b7a9c911

View File

@ -275,15 +275,15 @@ public class AboutHomeContent extends ScrollView {
for (int i = 0; i < array.length(); i++) { for (int i = 0; i < array.length(); i++) {
JSONObject jsonobj = array.getJSONObject(i); JSONObject jsonobj = array.getJSONObject(i);
mAddonsAdapter.add(jsonobj.getString("name")); mAddonsAdapter.add(jsonobj.getString("name"));
Log.i("GeckoAddons", "addon #" + i +": " + jsonobj.getString("name")); Log.i(LOGTAG, "addon #" + i +": " + jsonobj.getString("name"));
} }
} catch (Exception e) { } catch (Exception e) {
Log.i("GeckoAddons", "error reading json file", e); Log.i(LOGTAG, "error reading json file", e);
} }
} }
}); });
} catch (Exception e) { } catch (Exception e) {
Log.i("GeckoAddons", "error reading json file", e); Log.i(LOGTAG, "error reading json file", e);
} }
} }
}); });