mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-28 17:57:05 +02:00
Update aixlog to v1.5.1
This commit is contained in:
parent
af636c3989
commit
c1afc406dc
1 changed files with 3 additions and 4 deletions
|
@ -762,16 +762,15 @@ protected:
|
|||
if (pos != std::string::npos)
|
||||
{
|
||||
result.replace(pos, 8, message);
|
||||
stream << result << "\n";
|
||||
stream << result << std::endl;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (result.empty() || (result.back() == ' '))
|
||||
stream << result << message << "\n";
|
||||
stream << result << message << std::endl;
|
||||
else
|
||||
stream << result << " " << message << "\n";
|
||||
stream << result << " " << message << std::endl;
|
||||
}
|
||||
stream.flush();
|
||||
}
|
||||
|
||||
std::string format_;
|
||||
|
|
Loading…
Add table
Reference in a new issue