Skip to content

Commit

Permalink
Reduce noise of some logging output.
Browse files Browse the repository at this point in the history
  • Loading branch information
hzeller committed Feb 1, 2024
1 parent 4bff433 commit 5c13d08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/formatting/layout_optimizer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ LayoutFunction TokenPartitionsLayoutOptimizer::CalculateOptimalLayout(
for (const auto& child : iterator_range(node.Children().begin() + 2,
node.Children().end())) {
if (child.Value().IndentationSpaces() != indentation) {
VLOG(0) << "Indentations of subpartitions from the second to the "
VLOG(1) << "Indentations of subpartitions from the second to the "
"last are not equal. Using indentation of the second "
"subpartition as a hanging indentation. Parent node:\n"
<< node;
Expand Down
2 changes: 1 addition & 1 deletion verilog/analysis/verilog_project.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ absl::Status VerilogSourceFile::Parse() {
if (analyze_time > absl::Milliseconds(500)) {
LOG(WARNING) << "Slow Parse " << ResolvedPath() << " took " << analyze_time;
} else {
VLOG(1) << "Parse " << ResolvedPath() << " in " << analyze_time;
VLOG(2) << "Parse " << ResolvedPath() << " in " << analyze_time;
}

processing_state_ = ProcessingState::kParsed;
Expand Down

0 comments on commit 5c13d08

Please sign in to comment.