diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/progress_reporting/exports_progress_reporter.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/buildtool/progress_reporting/exports_progress_reporter.cpp b/src/buildtool/progress_reporting/exports_progress_reporter.cpp index 7c3bb659..fa8ab6c4 100644 --- a/src/buildtool/progress_reporting/exports_progress_reporter.cpp +++ b/src/buildtool/progress_reporting/exports_progress_reporter.cpp @@ -45,10 +45,8 @@ auto ExportsProgressReporter::Reporter(gsl::not_null<Statistics*> const& stats, uncached + not_eligible); if ((active > 0) && !sample.empty()) { - msg = fmt::format("{} ({}{})", - msg, - nlohmann::json(sample).dump(), - active > 1 ? ", ..." : ""); + msg = fmt::format( + "{} ({}{})", msg, sample, active > 1 ? ", ..." : ""); } Logger::Log(LogLevel::Progress, "{}", msg); }); |