-
@ApiStatus.Internal() public final class SentryLogcatAdapter
This class replaces android.util.Log with its own implementations which creates a for each log. It only replaces log functions that meet a minimum level set by the user on the Sentry Android Gradle Plugin.
-
-
Method Summary
Modifier and Type Method Description static int
v(@Nullable() String tag, @Nullable() String msg)
static int
v(@Nullable() String tag, @Nullable() String msg, @Nullable() Throwable tr)
static int
d(@Nullable() String tag, @Nullable() String msg)
static int
d(@Nullable() String tag, @Nullable() String msg, @Nullable() Throwable tr)
static int
i(@Nullable() String tag, @Nullable() String msg)
static int
i(@Nullable() String tag, @Nullable() String msg, @Nullable() Throwable tr)
static int
w(@Nullable() String tag, @Nullable() String msg)
static int
w(@Nullable() String tag, @Nullable() String msg, @Nullable() Throwable tr)
static int
w(@Nullable() String tag, @Nullable() Throwable tr)
static int
e(@Nullable() String tag, @Nullable() String msg)
static int
e(@Nullable() String tag, @Nullable() String msg, @Nullable() Throwable tr)
static int
wtf(@Nullable() String tag, @Nullable() String msg)
static int
wtf(@Nullable() String tag, @Nullable() Throwable tr)
static int
wtf(@Nullable() String tag, @Nullable() String msg, @Nullable() Throwable tr)
-