Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
log.cpp 268 B
#include <mtx/log.hpp>

#include <iostream>

namespace mtx::utils::log {
void
log_warning(const std::string_view &msg)
{
        std::cerr << "warning:" << msg << "\n";
}

void
log_error(const std::string_view &msg)
{
        std::cerr << "error:" << msg << "\n";
}
}