Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions kernel/src/listed_log_files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use crate::{DeltaResult, Error, StorageHandler, Version};
use delta_kernel_derive::internal_api;

use itertools::Itertools;
use tracing::{info, warn};
use tracing::log::*;
use url::Url;

/// Represents the set of log files found during a listing operation in the Delta log directory.
Expand Down Expand Up @@ -286,7 +286,10 @@ impl ListedLogFiles {
}
}
Unknown => {
warn!(
// It is possible that there are other files being stashed away into
// _delta_log/ This is not necessarily forbidden, but something we
// want to know about in a debugging scenario
debug!(
"Found file {} with unknown file type {:?} at version {}",
file.filename, file.file_type, version
);
Expand Down
Loading