Remove verbose logging while running tests.
This commit is contained in:
parent
00704856b0
commit
fdd37280f1
@ -5,6 +5,9 @@ INCLUDE_game
|
||||
|
||||
#ifndef __EMSCRIPTEN__
|
||||
void Error::debug(std::stringstream&str,std::source_location loc){
|
||||
#ifdef UNIT_TESTING
|
||||
return;
|
||||
#endif
|
||||
std::stringstream finalOutput;
|
||||
finalOutput<<loc.file_name()<<"("<<loc.line()<<":"<<loc.column()<<") "<<loc.function_name()<<": "<<str.str();
|
||||
debugLogger<<finalOutput.str()<<std::endl;
|
||||
|
||||
@ -39,7 +39,7 @@ All rights reserved.
|
||||
#define VERSION_MAJOR 1
|
||||
#define VERSION_MINOR 3
|
||||
#define VERSION_PATCH 0
|
||||
#define VERSION_BUILD 13551
|
||||
#define VERSION_BUILD 13553
|
||||
|
||||
#define stringify(a) stringify_(a)
|
||||
#define stringify_(a) #a
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user