Skip to content

Commit

Permalink
[pinot] remove noisy log (#1636)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrilou242 authored Nov 5, 2024
1 parent ee38b8e commit 1c72c27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public PinotControllerRestClient(final PinotThirdEyeDataSourceConfig config) {
public List<String> getAllTablesFromPinot() throws IOException {
final String endpoint = getPinotAllTablesEndpoint();
final HttpGet tablesReq = new HttpGet(endpoint);
LOG.info("Retrieving datasets: {}", tablesReq);
LOG.debug("Retrieving datasets: {}", tablesReq);
CloseableHttpResponse tablesRes = null;
try {
tablesRes = pinotControllerRestClientSupplier.get().execute(pinotControllerHost, tablesReq);
Expand Down

0 comments on commit 1c72c27

Please sign in to comment.