Skip to content

Commit

Permalink
Restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Aug 25, 2023
1 parent 6bb9565 commit 0863716
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tracing/json/json_tracing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,8 @@ void JsonBackend::OutputValue(::Json::Value & value)
chip::StringSplitter splitter(data_string.c_str(), '\n');

chip::CharSpan line;
while (splitter.Next(line)) {
while (splitter.Next(line))
{
ChipLogProgress(Automation, "%.*s", static_cast<int>(line.size()), line.data());
}
}
Expand Down

0 comments on commit 0863716

Please sign in to comment.