|
|
@ -38,37 +38,31 @@ namespace Inferno { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
template<typename ...A> |
|
|
|
template<typename ...A> |
|
|
|
void print(const char* color, std::string format, A... arguments) |
|
|
|
void log(const char* format, A... arguments) |
|
|
|
{ |
|
|
|
|
|
|
|
this->print(color, format.c_str(), arguments...); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template<typename T, typename ...A> |
|
|
|
|
|
|
|
void log(T format, A... arguments) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
this->print("", format, arguments...); |
|
|
|
this->print("", format, arguments...); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
template<typename T, typename ...A> |
|
|
|
template<typename ...A> |
|
|
|
void info(T format, A... arguments) |
|
|
|
void info(const char* format, A... arguments) |
|
|
|
{ |
|
|
|
{ |
|
|
|
this->print("\x1B[34m", format, arguments...); |
|
|
|
this->print("\x1B[34m", format, arguments...); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
template<typename T, typename ...A> |
|
|
|
template<typename ...A> |
|
|
|
void warn(T format, A... arguments) |
|
|
|
void warn(const char* format, A... arguments) |
|
|
|
{ |
|
|
|
{ |
|
|
|
this->print("\x1B[33m", format, arguments...); |
|
|
|
this->print("\x1B[33m", format, arguments...); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
template<typename T, typename ...A> |
|
|
|
template<typename ...A> |
|
|
|
void danger(T format, A... arguments) |
|
|
|
void danger(const char* format, A... arguments) |
|
|
|
{ |
|
|
|
{ |
|
|
|
this->print("\x1B[31m", format, arguments...); |
|
|
|
this->print("\x1B[31m", format, arguments...); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
template<typename T, typename ...A> |
|
|
|
template<typename ...A> |
|
|
|
void success(T format, A... arguments) |
|
|
|
void success(const char* format, A... arguments) |
|
|
|
{ |
|
|
|
{ |
|
|
|
this->print("\x1B[32m", format, arguments...); |
|
|
|
this->print("\x1B[32m", format, arguments...); |
|
|
|
} |
|
|
|
} |
|
|
|