Skip to content

Commit 13ec78f

Browse files
committed
chore: Change unsupported operators log level to DEBUG
Signed-off-by: Dheeraj Peri <[email protected]>
1 parent 733a4b1 commit 13ec78f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: core/conversion/conversion.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ bool VerifyConverterSupportForBlock(const torch::jit::Block* b, bool suppress_er
527527
unsupported_msg << std::endl << "In Module:" << std::endl;
528528

529529
if (!suppress_errors) {
530-
LOG_ERROR(unsupported_msg.str());
530+
LOG_DEBUG(unsupported_msg.str());
531531
}
532532

533533
std::unordered_map<std::string, std::unordered_set<std::string>> unsupported_node_locations;
@@ -554,7 +554,7 @@ bool VerifyConverterSupportForBlock(const torch::jit::Block* b, bool suppress_er
554554
traceback << str;
555555
}
556556
auto tb_str = traceback.str();
557-
LOG_ERROR(tb_str);
557+
LOG_DEBUG(tb_str);
558558
}
559559

560560
return false;

0 commit comments

Comments
 (0)