-
-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/cpu-info-for-device-context
- Loading branch information
Showing
24 changed files
with
798 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
116 changes: 116 additions & 0 deletions
116
sentry-android-core/src/main/java/io/sentry/android/core/SentryLogcatAdapter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
package io.sentry.android.core; | ||
|
||
import android.util.Log; | ||
import io.sentry.Breadcrumb; | ||
import io.sentry.Sentry; | ||
import io.sentry.SentryLevel; | ||
import org.jetbrains.annotations.ApiStatus; | ||
import org.jetbrains.annotations.NotNull; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
/** | ||
* This class replaces {@link android.util.Log} with its own implementations which creates a {@link | ||
* io.sentry.Breadcrumb} for each log. It only replaces log functions that meet a minimum level set | ||
* by the user on the Sentry Android Gradle Plugin. | ||
*/ | ||
@ApiStatus.Internal | ||
public final class SentryLogcatAdapter { | ||
|
||
private static void addAsBreadcrumb( | ||
@Nullable String tag, @NotNull SentryLevel level, @Nullable String msg) { | ||
addAsBreadcrumb(tag, level, msg, null); | ||
} | ||
|
||
private static void addAsBreadcrumb( | ||
@Nullable String tag, @NotNull SentryLevel level, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, level, null, tr); | ||
} | ||
|
||
private static void addAsBreadcrumb( | ||
@Nullable final String tag, | ||
@NotNull final SentryLevel level, | ||
@Nullable final String msg, | ||
@Nullable final Throwable tr) { | ||
Breadcrumb breadcrumb = new Breadcrumb(); | ||
breadcrumb.setCategory("Logcat"); | ||
breadcrumb.setMessage(msg); | ||
breadcrumb.setLevel(level); | ||
if (tag != null) { | ||
breadcrumb.setData("tag", tag); | ||
} | ||
if (tr != null && tr.getMessage() != null) { | ||
breadcrumb.setData("throwable", tr.getMessage()); | ||
} | ||
Sentry.addBreadcrumb(breadcrumb); | ||
} | ||
|
||
public static int v(@Nullable String tag, @Nullable String msg) { | ||
addAsBreadcrumb(tag, SentryLevel.DEBUG, msg); | ||
return Log.v(tag, msg); | ||
} | ||
|
||
public static int v(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, SentryLevel.DEBUG, msg, tr); | ||
return Log.v(tag, msg, tr); | ||
} | ||
|
||
public static int d(@Nullable String tag, @Nullable String msg) { | ||
addAsBreadcrumb(tag, SentryLevel.DEBUG, msg); | ||
return Log.d(tag, msg); | ||
} | ||
|
||
public static int d(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, SentryLevel.DEBUG, msg, tr); | ||
return Log.d(tag, msg, tr); | ||
} | ||
|
||
public static int i(@Nullable String tag, @Nullable String msg) { | ||
addAsBreadcrumb(tag, SentryLevel.INFO, msg); | ||
return Log.i(tag, msg); | ||
} | ||
|
||
public static int i(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, SentryLevel.INFO, msg, tr); | ||
return Log.i(tag, msg, tr); | ||
} | ||
|
||
public static int w(@Nullable String tag, @Nullable String msg) { | ||
addAsBreadcrumb(tag, SentryLevel.WARNING, msg); | ||
return Log.w(tag, msg); | ||
} | ||
|
||
public static int w(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, SentryLevel.WARNING, msg, tr); | ||
return Log.w(tag, msg, tr); | ||
} | ||
|
||
public static int w(@Nullable String tag, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, SentryLevel.WARNING, tr); | ||
return Log.w(tag, tr); | ||
} | ||
|
||
public static int e(@Nullable String tag, @Nullable String msg) { | ||
addAsBreadcrumb(tag, SentryLevel.ERROR, msg); | ||
return Log.e(tag, msg); | ||
} | ||
|
||
public static int e(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, SentryLevel.ERROR, msg, tr); | ||
return Log.e(tag, msg, tr); | ||
} | ||
|
||
public static int wtf(@Nullable String tag, @Nullable String msg) { | ||
addAsBreadcrumb(tag, SentryLevel.ERROR, msg); | ||
return Log.wtf(tag, msg); | ||
} | ||
|
||
public static int wtf(@Nullable String tag, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, SentryLevel.ERROR, tr); | ||
return Log.wtf(tag, tr); | ||
} | ||
|
||
public static int wtf(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { | ||
addAsBreadcrumb(tag, SentryLevel.ERROR, msg, tr); | ||
return Log.wtf(tag, msg, tr); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.