1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-06-13 04:01:32 +03:00

Removed ostream include from public API headers.

This commit is contained in:
Teemu Ollakka
2018-06-17 13:55:37 +03:00
parent 78cb0270af
commit af3119a58b
13 changed files with 119 additions and 63 deletions

View File

@ -6,6 +6,8 @@
#include "db_client.hpp"
#include "db_simulator.hpp"
#include "wsrep/logger.hpp"
db::server::server(simulator& simulator,
const std::string& name,
const std::string& server_id,
@ -32,7 +34,7 @@ void db::server::applier_thread()
&applier.client_state()));
enum wsrep::provider::status ret(
server_state_.provider().run_applier(cc));
wsrep::log() << "Applier thread exited with error code " << ret;
wsrep::log_info() << "Applier thread exited with error code " << ret;
}
void db::server::start_applier()