Skip to content

Commit 3acf2df

Browse files
Merge pull request #99 from rl112826/master
RL - Fixing logging message for grpc client on error.
2 parents 57b8d05 + d30cae0 commit 3acf2df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/expedia/www/haystack/client/dispatchers/clients/BaseGrpcClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public void onCompleted() {
116116
@Override
117117
public void onError(Throwable t) {
118118
onErrorCounter.increment();
119-
LOGGER.error("Dispatching span failed with error: {}", t);
119+
LOGGER.error("Dispatching span failed with error: " + t, t);
120120
}
121121

122122
@Override

0 commit comments

Comments
 (0)