-
-
Notifications
You must be signed in to change notification settings - Fork 468
Expand file tree
/
Copy pathILogger.java
More file actions
48 lines (42 loc) · 1.45 KB
/
ILogger.java
File metadata and controls
48 lines (42 loc) · 1.45 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
44
45
46
47
48
package io.sentry;
import org.jetbrains.annotations.NotNull;
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(@NotNull SentryLevel level, @NotNull String message, @Nullable 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(@NotNull SentryLevel level, @NotNull String message, @Nullable 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(
@NotNull SentryLevel level,
@Nullable Throwable throwable,
@NotNull String message,
@Nullable 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);
}