Skip to content
Snippets Groups Projects
Commit 09359cdf authored by Olivier Dion's avatar Olivier Dion
Browse files

logger: Fix missing TID for custom timestamp

Change-Id: I3f0015d5f492137592af5d6c247ca439dd75dd38
parent 800dbaba
Branches
No related tags found
No related merge requests found
......@@ -154,10 +154,12 @@ contextHeader(const char* const file, int line)
const auto prev_fill = out.fill();
out << secs << '.' << std::right << std::setw(3) << std::setfill('0') << milli
<< std::left << '|' << std::right << std::setw(5) << std::setfill(' ') << tid << std::left;
<< std::left;
out.fill(prev_fill);
}
out << '|' << std::right << std::setw(5) << std::setfill(' ') << tid << std::left;
// Context
if (file) {
#ifdef RING_UWP
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment