mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fixed the Log.d call in loge
This commit is contained in:
parent
afd81146f5
commit
9f2d53dc21
1 changed files with 2 additions and 2 deletions
|
|
@ -560,6 +560,6 @@ public class EventLogger
|
||||||
}
|
}
|
||||||
|
|
||||||
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue