Skip to content

Commit

Permalink
fix: use space instead of tab
Browse files Browse the repository at this point in the history
  • Loading branch information
ssk01 committed Dec 10, 2024
1 parent 53026cd commit d63264c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/bvar/mvariable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,13 +261,13 @@ size_t MVariable::dump_exposed(Dumper* dumper, const DumpOptions* options) {
if (entry) {
n += entry->var->dump(dumper, &opt);
}
if (n > static_cast<size_t>(FLAGS_bvar_max_dump_multi_dimension_metric_number)) {
if (n > static_cast<size_t>(FLAGS_bvar_max_dump_multi_dimension_metric_number)) {
LOG(WARNING) << "truncated because of \
exceed max dump multi dimension label number["
<< FLAGS_bvar_max_dump_multi_dimension_metric_number
<< "]";
exceed max dump multi dimension label number["
<< FLAGS_bvar_max_dump_multi_dimension_metric_number
<< "]";
break;
}
}
}
return n;
}
Expand Down

0 comments on commit d63264c

Please sign in to comment.