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

Commit e79e4192 authored by Andreas Gampe's avatar Andreas Gampe Committed by android-build-merger
Browse files

Merge "Base: Fix logging_test"

am: 3b80e5bc

Change-Id: I7c0d1e62e5d99d2d9d87ffd6d0e6f228ccdb3dd1
parents eef52c49 3b80e5bc
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -126,7 +126,12 @@ std::string make_log_pattern(android::base::LogSeverity severity,
  char log_char = log_characters[severity];
  std::string holder(__FILE__);
  return android::base::StringPrintf(
      "%c[[:space:]]+[[:digit:]]+[[:space:]]+[[:digit:]]+ %s:[[:digit:]]+] %s",
      "%c[[:space:]]+"
      "[[:digit:]]+-[[:digit:]]+[[:space:]]+"
      "[[:digit:]]+:[[:digit:]]+:[[:digit:]]+[[:space:]]+"
      "[[:digit:]]+[[:space:]]+"
      "[[:digit:]]+[[:space:]]+"
      "%s:[[:digit:]]+] %s",
      log_char, basename(&holder[0]), message);
}