This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new cd39ff98efc fix(datalake): Remove unnecessary log statements (#18568)
cd39ff98efc is described below
commit cd39ff98efccaae397be77169dfc71ec07a244d7
Author: Andrej Vaňo <[email protected]>
AuthorDate: Wed Jul 9 15:06:00 2025 +0200
fix(datalake): Remove unnecessary log statements (#18568)
---
.../storage/datalake/operations/DataLakeFileSystemOperations.java | 3 ---
1 file changed, 3 deletions(-)
diff --git
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileSystemOperations.java
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileSystemOperations.java
index a280258ebda..98c9d2bb760 100644
---
a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileSystemOperations.java
+++
b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/operations/DataLakeFileSystemOperations.java
@@ -48,15 +48,12 @@ public class DataLakeFileSystemOperations {
}
public DataLakeOperationResponse createFileSystem(final Exchange exchange)
{
- LOG.info("inside create file system in operation");
final Map<String, String> metadata =
configurationProxy.getMetadata(exchange);
final PublicAccessType publicAccessType =
configurationProxy.getPublicAccessType(exchange);
final Duration timeout = configurationProxy.getTimeout(exchange);
final DataLakeExchangeHeaders dataLakeExchangeHeaders
= new
DataLakeExchangeHeaders().httpHeaders(client.createFileSystem(metadata,
publicAccessType, timeout));
- LOG.info("DataLake exchange headers: {}", dataLakeExchangeHeaders);
-
return new DataLakeOperationResponse(true,
dataLakeExchangeHeaders.toMap());
}