Replace std::endl with "\n"

This commit is contained in:
badaix 2025-01-07 20:29:16 +01:00
parent f1ee39e515
commit cd67fb9645
10 changed files with 28 additions and 31 deletions

View file

@ -1,6 +1,6 @@
/***
This file is part of snapcast
Copyright (C) 2014-2024 Johannes Pohl
Copyright (C) 2014-2025 Johannes Pohl
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -173,7 +173,7 @@ void ClientConnection::connect(const ResultHandler& handler)
return;
}
LOG(NOTICE, LOG_TAG) << "Connected to " << socket_.remote_endpoint().address().to_string() << endl;
LOG(NOTICE, LOG_TAG) << "Connected to " << socket_.remote_endpoint().address().to_string() << "\n";
handler(ec);
getNextMessage();
});