Skip to content

Commit fa2ad7d

Browse files
committed
Added log message for when feature is enabled
1 parent ec11efc commit fa2ad7d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main/java/com/uid2/operator/vertx/UIDOperatorVerticle.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ private void setUpEncryptedRoutes(Router mainRouter, BodyHandler bodyHandler) {
307307
mainRouter.post(V2_TOKEN_CLIENTGENERATE.toString()).handler(bodyHandler).handler(this::handleClientSideTokenGenerate);
308308

309309
if (isAsyncBatchRequestsEnabled) {
310+
LOGGER.info("Async batch requests enabled");
310311
mainRouter.post(V2_IDENTITY_BUCKETS.toString()).handler(bodyHandler).handler(auth.handleV1(
311312
rc -> encryptedPayloadHandler.handleAsync(rc, this::handleBucketsV2Async), Role.MAPPER));
312313
mainRouter.post(V2_IDENTITY_MAP.toString()).handler(bodyHandler).handler(auth.handleV1(

0 commit comments

Comments
 (0)