mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-30 07:23:07 +03:00
Refactored provider specific code out of server_context.cpp
This commit is contained in:
@ -37,6 +37,12 @@ namespace wsrep
|
||||
static std::ostream& os_;
|
||||
};
|
||||
|
||||
class log_error : public log
|
||||
{
|
||||
public:
|
||||
log_error()
|
||||
: log("ERROR") { }
|
||||
};
|
||||
|
||||
class log_warning : public log
|
||||
{
|
||||
@ -45,6 +51,13 @@ namespace wsrep
|
||||
: log("WARNING") { }
|
||||
};
|
||||
|
||||
class log_info : public log
|
||||
{
|
||||
public:
|
||||
log_info()
|
||||
: log("INFO") { }
|
||||
};
|
||||
|
||||
class log_debug : public log
|
||||
{
|
||||
public:
|
||||
|
Reference in New Issue
Block a user