Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d966e226 authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

Revert "logd: trailing spaces in log statistics"

Caused +/- field data to land under the Pruned column

This reverts commit 0adcc3e3.

Test: manual
Bug: 30118730
Change-Id: Ic75ce3a90baded19f3efc0cc77474fe5d9a8accd
parent 152b003b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -304,7 +304,7 @@ std::string UidEntry::format(const LogStatistics &stat, log_id_t id) const {
            if ((spaces <= 0) && pruned.length()) {
                spaces = 1;
            }
            if ((spaces > 0) && (pruned.length() != 0)) {
            if (spaces > 0) {
                change += android::base::StringPrintf("%*s", (int)spaces, "");
            }
            pruned = change + pruned;