| 53 | struct TParLoggingHelper: public TStringOutput { |
| 54 | TString Buf; |
| 55 | explicit TParLoggingHelper(const TSourceLocation& location) |
| 56 | : TStringOutput(Buf) |
| 57 | { |
| 58 | (*this) << "PAR_LOG: " << NLoggingImpl::GetLocalTimeS() << " " << StripFileName(location.File) << ":" << location.Line << " "; |
| 59 | } |
| 60 | |
| 61 | template <class T> |
| 62 | inline TParLoggingHelper& operator<<(const T& t) { |
nothing calls this directly
no test coverage detected