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

Commit e9c8de19 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

am: 6eba8e83

Change-Id: Ic0a1999ba4b41e89b3367bf8fed5c17b87532924
parents 222d17c0 6eba8e83
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);
}