Skip to content

Commit

Permalink
Merge branch 'main' into job-overview-page-creation
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-swiecki-saucelabs authored Sep 6, 2024
2 parents e42b649 + c3b08ec commit c3a00a3
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,14 @@ To enable displaying logs from inside the library, set the level from which info
BacktraceLogger.setLevel(LogLevel.DEBUG);
```

You can replace internal BacktraceLogger with your custom implementation using code below.

```java
BacktraceLogger.setLogger(customLoggerInstance);
```

Your custom logger implementation has to implement [Logger](https://github.com/backtrace-labs/backtrace-android/blob/master/backtrace-library/src/main/java/backtraceio/library/logger/Logger.java) interface.

## Monitoring Custom Threads

The backtrace-android library provides structures and methods to monitor the blocking of your own threads.
Expand Down

0 comments on commit c3a00a3

Please sign in to comment.