fix
Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit
Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit
This commit is contained in:
parent
690902b31d
commit
06b79ffd2d
@ -33,7 +33,7 @@ struct repertory_exception_handler final
|
|||||||
void handle_debug(std::string_view function_name,
|
void handle_debug(std::string_view function_name,
|
||||||
std::string_view msg) const override {
|
std::string_view msg) const override {
|
||||||
repertory::event_system::instance().raise<repertory::debug_log>(
|
repertory::event_system::instance().raise<repertory::debug_log>(
|
||||||
function_name, msg);
|
function_name, std::string{msg});
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle_error(std::string_view function_name,
|
void handle_error(std::string_view function_name,
|
||||||
@ -53,19 +53,19 @@ struct repertory_exception_handler final
|
|||||||
void handle_info(std::string_view function_name,
|
void handle_info(std::string_view function_name,
|
||||||
std::string_view msg) const override {
|
std::string_view msg) const override {
|
||||||
repertory::event_system::instance().raise<repertory::debug_log>(
|
repertory::event_system::instance().raise<repertory::debug_log>(
|
||||||
function_name, msg);
|
function_name, std::string{msg});
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle_trace(std::string_view function_name,
|
void handle_trace(std::string_view function_name,
|
||||||
std::string_view msg) const override {
|
std::string_view msg) const override {
|
||||||
repertory::event_system::instance().raise<repertory::debug_log>(
|
repertory::event_system::instance().raise<repertory::debug_log>(
|
||||||
function_name, msg);
|
function_name, std::string{msg});
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle_warn(std::string_view function_name,
|
void handle_warn(std::string_view function_name,
|
||||||
std::string_view msg) const override {
|
std::string_view msg) const override {
|
||||||
repertory::event_system::instance().raise<repertory::debug_log>(
|
repertory::event_system::instance().raise<repertory::debug_log>(
|
||||||
function_name, msg);
|
function_name, std::string{msg});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user