Skip to content

Commit

Permalink
Merge pull request #199 from korpling/feature/xlsx-warnings
Browse files Browse the repository at this point in the history
Add document path to warning about merged cells
  • Loading branch information
thomaskrause authored Feb 26, 2024
2 parents e9d0227 + 2d934a4 commit c46fc44
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/importer/xlsx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,9 @@ impl ImportSpreadsheet {
});
} else {
progress_reporter.warn(&format!(
"Merged cells {} could not be mapped to a known column",
cell_range.get_range()
"Merged cells {} ({}) could not be mapped to a known column",
cell_range.get_range(),
doc_path,
))?;
}
}
Expand Down

0 comments on commit c46fc44

Please sign in to comment.