This is an automated email from the ASF dual-hosted git repository.
milenkovicm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new b4b8ae0c minor: change log level for object store creation (#1247)
b4b8ae0c is described below
commit b4b8ae0cb58afdcad0e8d4c4558febc42cf62f35
Author: Marko Milenković <[email protected]>
AuthorDate: Tue Apr 29 09:53:33 2025 +0100
minor: change log level for object store creation (#1247)
---
ballista/core/src/object_store.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ballista/core/src/object_store.rs
b/ballista/core/src/object_store.rs
index 594056e8..e6af4676 100644
--- a/ballista/core/src/object_store.rs
+++ b/ballista/core/src/object_store.rs
@@ -136,7 +136,7 @@ impl ObjectStoreRegistry for CustomObjectStoreRegistry {
fn get_store(&self, url: &Url) -> Result<Arc<dyn ObjectStore>> {
let scheme = url.scheme();
- log::info!("get_store: {:?}", &self.s3options.config.read());
+ log::trace!("get_store: {:?}", &self.s3options.config.read());
match scheme {
"" | "file" => Ok(self.local.clone()),
"http" | "https" => Ok(Arc::new(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]