We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37899f4 commit 9b459c1Copy full SHA for 9b459c1
src/main/kotlin/no/nav/syfo/application/BlockingApplicationRunner.kt
@@ -109,7 +109,11 @@ class BlockingApplicationRunner(
109
) {
110
wrapExceptions {
111
loop@ while (applicationState.ready) {
112
+ val randomUuid = UUID.randomUUID().toString()
113
+ logger.info("Polling for message, trace id: $randomUuid")
114
val message = inputconsumer.receive(1000)
115
+ logger.info("Received message, trace id: $randomUuid")
116
+
117
var loggingMeta: LoggingMeta? = null
118
if (message == null) {
119
delay(100)
0 commit comments