grino/src/Logger.hpp

41 lines
780 B
C++

#ifndef grino_LOGGER_HPP
#define grino_LOGGER_HPP
#include "commons.hpp"
#include "mutils.hpp"
#include "Loc.hpp"
#define LOG_TYPE(G) \
G(LOG_ERROR), \
G(LOG_ASSERT),
namespace grino
{
GRINO_ENUM(Log, LOG_TYPE);
class Logger
{
public:
explicit Logger();
virtual ~Logger();
template <typename T>
void log(LogType type, Loc const& loc, std::string const& what);
private:
};
template <typename T>
void Logger::log(LogType type, Loc const& loc, std::string const& what)
{
std::stringstream ss;
ss << loc.path().string() << ":" << loc.line() << " ";
ss << "[" << GRINO_TRIM(LogTypeStr[type], "LOG_") << "] ";
ss << what;
throw T { ss.str() };
}
}
#endif