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
4 changes: 2 additions & 2 deletions kernel/src/log_segment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use crate::{
use delta_kernel_derive::internal_api;

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

#[cfg(test)]
Expand Down Expand Up @@ -741,7 +741,7 @@ fn list_log_files_with_checkpoint(
));
};
if latest_checkpoint.version != checkpoint_metadata.version {
warn!(
info!(
"_last_checkpoint hint is out of date. _last_checkpoint version: {}. Using actual most recent: {}",
checkpoint_metadata.version,
latest_checkpoint.version
Expand Down
Loading