Skip to content

Commit c299dcb

Browse files
CID-3982: Enhance expired/wrong technical user error
1 parent 5acf09d commit c299dcb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/kotlin/net/leanix/githubagent/config/WebSocketClientConfig.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import io.github.resilience4j.retry.annotation.Retry
55
import net.leanix.githubagent.handler.BrokerStompSessionHandler
66
import net.leanix.githubagent.services.LeanIXAuthService
77
import net.leanix.githubagent.shared.GitHubAgentProperties.GITHUB_AGENT_VERSION
8+
import org.slf4j.LoggerFactory
89
import org.springframework.context.annotation.Bean
910
import org.springframework.context.annotation.Configuration
1011
import org.springframework.messaging.converter.MappingJackson2MessageConverter
@@ -25,7 +26,7 @@ class WebSocketClientConfig(
2526
private val leanIXProperties: LeanIXProperties,
2627
private val gitHubEnterpriseProperties: GitHubEnterpriseProperties
2728
) {
28-
private val logger = org.slf4j.LoggerFactory.getLogger(WebSocketClientConfig::class.java)
29+
private val logger = LoggerFactory.getLogger(WebSocketClientConfig::class.java)
2930

3031
@Retry(name = "ws_init_session")
3132
fun initSession(): StompSession {

0 commit comments

Comments
 (0)