File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/kotlin/net/leanix/githubagent/config Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import io.github.resilience4j.retry.annotation.Retry
55import net.leanix.githubagent.handler.BrokerStompSessionHandler
66import net.leanix.githubagent.services.LeanIXAuthService
77import net.leanix.githubagent.shared.GitHubAgentProperties.GITHUB_AGENT_VERSION
8+ import org.slf4j.LoggerFactory
89import org.springframework.context.annotation.Bean
910import org.springframework.context.annotation.Configuration
1011import 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 {
You can’t perform that action at this time.
0 commit comments