Fixed the Log.d call in loge

This commit is contained in:
Cory Charlton 2018-02-23 09:15:14 -08:00
parent afd81146f5
commit 9f2d53dc21

View file

@ -556,10 +556,10 @@ public class EventLogger
} }
protected void logd(String tag, String msg) { protected void logd(String tag, String msg) {
Log.d(tag, msg); Log.d(tag, msg);
} }
protected void loge(String tag, String msg, Throwable tr) { protected void loge(String tag, String msg, Throwable tr) {
Log.d(tag, msg, tr); Log.e(tag, msg, tr);
} }
} }