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

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

Merge "Base: Fix logging_test" am: 3b80e5bc am: e79e4192

am: 5add4087

Change-Id: I6c7c88fbe021c21760a3dd273a99eebc9e49aa6d
parents 13a29659 5add4087
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);
}