Skip to content
Open
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
8 changes: 4 additions & 4 deletions runtime/core/session_basic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,9 @@ absl::Status SessionBasic::RunPrefill(const std::vector<InputData>& contents) {
if (contents.empty()) {
return absl::InvalidArgumentError("Input is empty.");
}
ABSL_LOG(INFO) << "RunPrefill: ";
ABSL_VLOG(1) << "RunPrefill: ";
for (const auto& content : contents) {
ABSL_LOG(INFO) << content;
ABSL_VLOG(1) << content;
}

if (cancelled_.load()) {
Expand Down Expand Up @@ -340,9 +340,9 @@ absl::StatusOr<std::unique_ptr<TaskController>> SessionBasic::RunPrefillAsync(
if (contents.empty()) {
return absl::InvalidArgumentError("Input is empty.");
}
ABSL_LOG(INFO) << "RunPrefillAsync: ";
ABSL_VLOG(1) << "RunPrefillAsync: ";
for (const auto& content : contents) {
ABSL_LOG(INFO) << content;
ABSL_VLOG(1) << content;
}

if (cancelled_.load()) {
Expand Down
Loading