Skip to content

Commit

Permalink
Change an sctp log to info.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLennox committed Sep 25, 2024
1 parent 8e6213d commit 36a84b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jvb/src/main/kotlin/org/jitsi/videobridge/Endpoint.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,7 @@ class Endpoint @JvmOverloads constructor(
}

override fun OnAborted(error: ErrorKind, message: String) {
logger.warn("SCTP aborted with error $error: $message")
logger.info("SCTP aborted with error $error: $message")
}

override fun OnConnected() {
Expand Down
2 changes: 1 addition & 1 deletion jvb/src/main/kotlin/org/jitsi/videobridge/relay/Relay.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ class Relay @JvmOverloads constructor(
}

override fun OnAborted(error: ErrorKind, message: String) {
logger.warn("SCTP aborted with error $error: $message")
logger.info("SCTP aborted with error $error: $message")
}

override fun OnConnected() {
Expand Down

0 comments on commit 36a84b5

Please sign in to comment.