Skip to content

Commit b6d4e72

Browse files
snnncopybara-github
authored andcommitted
Lower down logging level for some debug messages
LiteRT-LM-PiperOrigin-RevId: 894194814
1 parent cbf9cd1 commit b6d4e72

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

runtime/core/session_basic.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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()) {

0 commit comments

Comments
 (0)