1 #pragma once
2 
3 #include <string_view>
4 
5 namespace mtx {
6 namespace utils {
7 namespace log {
8 void
9 log_warning(const std::string_view &msg);
10 void
11 log_error(const std::string_view &msg);
12 }
13 }
14 }
15