| 33 | |
| 34 | |
| 35 | EntryBuilder::EntryBuilder(Level lvl, const char* sourceFile, const char* sourceFunctionName, int sourceLine) noexcept |
| 36 | : |
| 37 | Entry{ |
| 38 | .level_ = lvl, |
| 39 | .sourceStrings_ = Entry::StaticSourceStrings{ |
| 40 | .file_ = sourceFile, |
| 41 | .functionName_ = sourceFunctionName, |
| 42 | }, |
| 43 | .sourceLine_ = sourceLine, |
| 44 | .timestamp_ = std::chrono::system_clock::now(), |
| 45 | .pid_ = GetCurrentProcessId(), |
| 46 | .tid_ = GetCurrentThreadId(), |
| 47 | }, |
| 48 | traceSkipDepth_{ PM_LOG_DEFAULT_TRACE_SKIP } |
| 49 | {} |
| 50 | EntryBuilder::EntryBuilder(Level lvl, std::string sourceFile, std::string, int sourceLine) noexcept |
| 51 | : |
| 52 | Entry{ |
nothing calls this directly
no outgoing calls
no test coverage detected