Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def _cleanup_batch_data(self) -> None:
self.batch_sequence = 0

except Exception as e:
logger.error(f"Warning: Error during cleanup: {e}")
logger.warning(f"Error during cleanup: {e}")

def has_events(self) -> bool:
"""Check if there are events in the buffer"""
Expand Down
2 changes: 1 addition & 1 deletion lib/crewai/src/crewai/experimental/evaluation/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def assert_experiment_no_regression(comparison_result: dict[str, list[str]]) ->
missing_tests = comparison_result.get("missing_tests", [])
if missing_tests:
warnings.warn(
f"Warning: {len(missing_tests)} tests from the baseline are missing in the current run: {missing_tests}",
f"{len(missing_tests)} tests from the baseline are missing in the current run: {missing_tests}",
UserWarning,
stacklevel=2,
)
Expand Down