Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
log.hpp 186 B
#pragma once

#include <string_view>

namespace mtx {
namespace utils {
namespace log {
void
log_warning(const std::string_view &msg);
void
log_error(const std::string_view &msg);
}
}
}