Skip to content

Commit ac789ab

Browse files
committed
Update
[ghstack-poisoned]
1 parent 5cb625a commit ac789ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/portable/executor_runner/executor_runner.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ int main(int argc, char** argv) {
251251

252252
// Run the model.
253253
for (uint32_t i = 0; i < FLAGS_num_executions; i++) {
254-
ET_LOG(Info, "Preparing inputs.");
254+
ET_LOG(Debug, "Preparing inputs.");
255255
// Allocate input tensors and set all of their elements to 1. The `inputs`
256256
// variable owns the allocated memory and must live past the last call to
257257
// `execute()`.
@@ -265,7 +265,7 @@ int main(int argc, char** argv) {
265265
inputs.ok(),
266266
"Could not prepare inputs: 0x%" PRIx32,
267267
(uint32_t)inputs.error());
268-
ET_LOG(Info, "Inputs prepared.");
268+
ET_LOG(Debug, "Inputs prepared.");
269269

270270
Error status = method->execute();
271271
ET_CHECK_MSG(

0 commit comments

Comments
 (0)