Skip to content

Commit 34f83c5

Browse files
authored
chore(flagd): Improve grpc logging (#1219)
Signed-off-by: christian.lutnik <[email protected]>
1 parent 83fba0c commit 34f83c5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

providers/flagd/src/main/java/dev/openfeature/contrib/providers/flagd/resolver/common/ChannelMonitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static void monitorChannelState(
4848
}
4949
}
5050
if (currentState != ConnectivityState.SHUTDOWN) {
51-
log.debug("shutting down grpc channel");
51+
log.debug("continuing to monitor the grpc channel");
5252
// Re-register the state monitor to watch for the next state transition.
5353
monitorChannelState(currentState, channel, onConnectionReady, onConnectionLost);
5454
}

providers/flagd/src/main/java/dev/openfeature/contrib/providers/flagd/resolver/process/storage/connector/grpc/GrpcStreamConnector.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ void observeEventStream(final BlockingQueue<QueuePayload> writeTo, final AtomicB
116116
// instead of logging and throwing here, retain the exception and handle in the
117117
// stream logic below
118118
metadataException = e;
119+
log.debug("Metadata exception: {}", e.getMessage(), e);
119120
}
120121

121122
while (!shutdown.get()) {
@@ -129,7 +130,10 @@ void observeEventStream(final BlockingQueue<QueuePayload> writeTo, final AtomicB
129130

130131
Throwable streamException = response.getError();
131132
if (streamException != null || metadataException != null) {
132-
log.debug("Exception in GRPC connection");
133+
log.debug(
134+
"Exception in GRPC connection, streamException {}, metadataException {}",
135+
streamException,
136+
metadataException);
133137
if (!writeTo.offer(new QueuePayload(
134138
QueuePayloadType.ERROR, "Error from stream or metadata", metadataResponse))) {
135139
log.error("Failed to convey ERROR status, queue is full");

0 commit comments

Comments
 (0)