Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
murki committed Sep 10, 2024
1 parent 36a6751 commit 5b53581
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,22 @@ enum class LogLevel(val value: Int) {
* Represents an error log level, which is the most severe log level.
*/
ERROR(4),

/**
* Represents a warning log level, which is less severe than error.
*/
WARNING(3),

/**
* Represents an info log level, which is less verbose than debug.
*/
INFO(2),

/**
* Represents a debug log level, which is more verbose than info.
*/
DEBUG(1),

/**
* Represents a trace log level, which is the most verbose log level.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,34 +18,42 @@ enum class LogType(val value: Int) {
* Represents a normal log type, from consumer apps code.
*/
NORMAL(0),

/**
* Represents a replay log type, from session replay.
*/
REPLAY(1),

/**
* Represents a lifecycle log type, from automatic instrumentation.
*/
LIFECYCLE(2),

/**
* Represents a resource log type, from automatic instrumentation.
*/
RESOURCE(3),

/**
* Represents an internal SDK log type, from the SDK itself.
*/
INTERNALSDK(4),

/**
* Represents a view lifecycle log type, from automatic instrumentation.
*/
VIEW(5),

/**
* Represents a device log type, from automatic instrumentation.
*/
DEVICE(6),

/**
* Represents a UX interaction log type, from automatic instrumentation.
*/
UX(7),

/**
* Represents a span log type, from automatic instrumentation.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@ data class HttpResponse @JvmOverloads constructor(
* Represents a successful http request operation
*/
SUCCESS,

/**
* Represents a failed http request operation
*/
FAILURE,

/**
* Represents an interrupted or incomplete http request operation
*/
Expand Down

0 comments on commit 5b53581

Please sign in to comment.