blob: 9d96ca587bba3ce8b09a1c7ef497b5d610420227 [file] [log] [blame]
#include "casbin/pch.h"
#ifndef LOGGER_CPP
#define LOGGER_CPP
#include "casbin/log/Logger.h"
#include "casbin/log/log_util.h"
namespace casbin {
//Print formats using the default formats for its operands and logs the message.
template <typename T, typename... Object>
void Logger::Print(T arg, Object... objects) {
return;
}
//Printf formats according to a format specifier and logs the message.
template <typename... Object>
void Logger::Printf(std::string format, Object... objects) {
Print(objects...);
}
DefaultLogger LogUtil::s_logger;
}
#endif // LOGGER_CPP