forked from getsentry/sentry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathILogger.java
More file actions
43 lines (37 loc) · 1.3 KB
/
ILogger.java
File metadata and controls
43 lines (37 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package io.sentry;
import org.jetbrains.annotations.Nullable;
/** Sentry SDK internal logging interface. */
public interface ILogger {
/**
* Logs a message with the specified level, message and optional arguments.
*
* @param level The SentryLevel.
* @param message The message.
* @param args The optional arguments to format the message.
*/
void log(SentryLevel level, String message, Object... args);
/**
* Logs a message with the specified level, message and optional arguments.
*
* @param level The SentryLevel.
* @param message The message.
* @param throwable The throwable to log.
*/
void log(SentryLevel level, String message, Throwable throwable);
/**
* Logs a message with the specified level, throwable, message and optional arguments.
*
* @param level The SentryLevel.
* @param throwable The throwable to log.
* @param message The message.
* @param args the formatting arguments
*/
void log(SentryLevel level, Throwable throwable, String message, Object... args);
/**
* Whether this logger is enabled for the specified SentryLevel.
*
* @param level The SentryLevel to test against.
* @return True if a log message would be recorded for the level. Otherwise false.
*/
boolean isEnabled(final @Nullable SentryLevel level);
}