Update console.hpp
This commit is contained in:
parent
b9e9369637
commit
9b0f3b6d58
@ -9,7 +9,7 @@ namespace console
|
||||
enum console_type
|
||||
{
|
||||
con_type_error = 1,
|
||||
con_type_dev = 2,
|
||||
con_type_debug = 2,
|
||||
con_type_warning = 3,
|
||||
con_type_info = 7
|
||||
};
|
||||
@ -26,7 +26,7 @@ namespace console
|
||||
void debug(const char* fmt, Args&&... args)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
print(2, fmt, std::forward<Args>(args)...);
|
||||
print(con_type_debug, fmt, std::forward<Args>(args)...);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user