Skip to content

Commit

Permalink
fix: avoid excess listing of log files
Browse files Browse the repository at this point in the history
  • Loading branch information
eeroel committed Sep 19, 2023
1 parent fdebcd6 commit 0cad361
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rust/src/delta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,9 @@ impl DeltaTable {
}
};

debug!("start with latest checkpoint version: {version_start}");
debug!("latest checkpoint version: {version_start}");

let version_start = max(self.version(), version_start);

lazy_static! {
static ref DELTA_LOG_REGEX: Regex =
Expand Down

0 comments on commit 0cad361

Please sign in to comment.