Commit 9f2d53dc by Cory Charlton

Fixed the Log.d call in loge

parent afd81146
...@@ -556,10 +556,10 @@ public class EventLogger ...@@ -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);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment