| 88 | ScopedLoggingTimer::~ScopedLoggingTimer() { StopAndLog(); } |
| 89 | |
| 90 | Status AddStatus(Status prior, absl::string_view context) { |
| 91 | CHECK(!prior.ok()); |
| 92 | return Status{prior.code(), |
| 93 | absl::StrCat(context, ": ", prior.error_message())}; |
| 94 | } |
| 95 | |
| 96 | Status AppendStatus(Status prior, absl::string_view context) { |
| 97 | CHECK(!prior.ok()); |
no test coverage detected