mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
logger: Fix missing TID for custom timestamp
Change-Id: I3f0015d5f492137592af5d6c247ca439dd75dd38
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user