Skip to content
Snippets Groups Projects
Commit 184cc6eb authored by Alok Joshi's avatar Alok Joshi
Browse files

change to debug log

parent 11d34d05
No related branches found
No related tags found
2 merge requests!183Locking down maven central,!161Ignore health check logging
Pipeline #46348 failed
...@@ -73,7 +73,7 @@ public class PublisherImpl implements IPublisher { ...@@ -73,7 +73,7 @@ public class PublisherImpl implements IPublisher {
message.setContentType("application/json"); message.setContentType("application/json");
try { try {
logger.info("Indexer publishes message " + headers.getCorrelationId()); logger.debug("Indexer publishes message " + headers.getCorrelationId());
topicClientFactory.getClient(headers.getPartitionId(), serviceBusTopic).send(message); topicClientFactory.getClient(headers.getPartitionId(), serviceBusTopic).send(message);
} }
catch (Exception e) catch (Exception e)
......
...@@ -151,7 +151,7 @@ public class IndexerQueueTaskBuilderAzure extends IndexerQueueTaskBuilder { ...@@ -151,7 +151,7 @@ public class IndexerQueueTaskBuilderAzure extends IndexerQueueTaskBuilder {
message.setContentType("application/json"); message.setContentType("application/json");
try { try {
logger.info("Indexer publishes message to Service Bus " + headers.getCorrelationId()); logger.debug("Indexer publishes message to Service Bus " + headers.getCorrelationId());
topicClientFactory.getClient(headers.getPartitionId(), serviceBusReindexTopicName).send(message); topicClientFactory.getClient(headers.getPartitionId(), serviceBusReindexTopicName).send(message);
} catch (Exception e) { } catch (Exception e) {
logger.error(e.getMessage(), e); logger.error(e.getMessage(), e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment