File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -296,9 +296,9 @@ absl::Status SessionBasic::RunPrefill(const std::vector<InputData>& contents) {
296296 if (contents.empty ()) {
297297 return absl::InvalidArgumentError (" Input is empty." );
298298 }
299- ABSL_LOG (INFO ) << " RunPrefill: " ;
299+ ABSL_VLOG ( 1 ) << " RunPrefill: " ;
300300 for (const auto & content : contents) {
301- ABSL_LOG (INFO ) << content;
301+ ABSL_VLOG ( 1 ) << content;
302302 }
303303
304304 if (cancelled_.load ()) {
@@ -340,9 +340,9 @@ absl::StatusOr<std::unique_ptr<TaskController>> SessionBasic::RunPrefillAsync(
340340 if (contents.empty ()) {
341341 return absl::InvalidArgumentError (" Input is empty." );
342342 }
343- ABSL_LOG (INFO ) << " RunPrefillAsync: " ;
343+ ABSL_VLOG ( 1 ) << " RunPrefillAsync: " ;
344344 for (const auto & content : contents) {
345- ABSL_LOG (INFO ) << content;
345+ ABSL_VLOG ( 1 ) << content;
346346 }
347347
348348 if (cancelled_.load ()) {
You can’t perform that action at this time.
0 commit comments