Skip to content

Commit abab560

Browse files
committed
update wording of warning log
1 parent 2b19f01 commit abab560

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/data_designer/engine/dataset_builders/utils/dataset_batch_manager.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,9 @@ def finish_batch(self, on_complete: Callable[[Path], None] | None = None) -> Pat
100100
final_file_path = None
101101

102102
logger.warning(
103-
f"⚠️ Batch {self._current_batch_number + 1} finished without any results to write. Data from this batch "
104-
f"have been written to the partial results directory: {self.artifact_storage.partial_results_path}"
103+
f"⚠️ Batch {self._current_batch_number + 1} finished without any results to write. "
104+
"A partial dataset containing the currently available columns has been written to the partial results "
105+
f"directory: {self.artifact_storage.partial_results_path}"
105106
)
106107

107108
self._current_batch_number += 1

0 commit comments

Comments
 (0)