mirror of
https://github.com/samsonjs/media.git
synced 2026-03-29 10:05:48 +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
|
|
@ -556,10 +556,10 @@ public class EventLogger
|
|||
}
|
||||
|
||||
protected void logd(String tag, String msg) {
|
||||
Log.d(tag, msg);
|
||||
Log.d(tag, msg);
|
||||
}
|
||||
|
||||
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