Skip to content

Commit fd0f661

Browse files
authored
Log which FS is used in DuckDB as debug (#6821)
This log is currently just noisy in benchmarks, I remember that's was the thing we agreed to do Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent b1c5926 commit fd0f661

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vortex-duckdb/src/filesystem.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub(super) fn resolve_filesystem(
5353
let fs_config = fs_config.as_string();
5454

5555
Ok(if fs_config.as_str() == "duckdb" {
56-
tracing::info!(
56+
tracing::debug!(
5757
"Using DuckDB's built-in filesystem for URL scheme '{}'",
5858
base_url.scheme()
5959
);
@@ -63,7 +63,7 @@ pub(super) fn resolve_filesystem(
6363
ctx.erase_lifetime()
6464
}))
6565
} else if fs_config.as_str() == "vortex" {
66-
tracing::info!(
66+
tracing::debug!(
6767
"Using Vortex's object store filesystem for URL scheme '{}'",
6868
base_url.scheme()
6969
);

0 commit comments

Comments
 (0)