Remove verbose logging while running tests.
All checks were successful
Emscripten Build / Build_and_Deploy_Web_Build (push) Successful in 17m46s
Emscripten Build / UnitTesting (push) Successful in 8m39s

This commit is contained in:
AMay 2026-05-05 01:43:40 -05:00
parent 00704856b0
commit fdd37280f1
2 changed files with 4 additions and 1 deletions

View File

@ -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;

View File

@ -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