1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-02 08:57:44 +00:00

Add enhanced logging to exd_common_gen

This commit is contained in:
Maple 2023-03-07 09:31:44 -03:00
parent 71eb8dcf42
commit 7d8b5472be

View file

@ -39,6 +39,8 @@ std::string generateEnum( const std::string& exd, int8_t nameIndex, const std::s
auto access = g_exdData.setupDatAccess( exd, lang );
auto rows = access.get_rows();
Logger::info( "Generating data for Sheet: {0}", exd);
for( auto row : rows )
{
auto& fields = row.second;
@ -106,6 +108,9 @@ int main( int argc, char** argv )
return 1;
}
Logger::info( "Generating structs, this may take several minutes..." );
Logger::info( "Go grab a coffee..." );
std::string result = "#ifndef _COMMON_GEN_H_\n#define _COMMON_GEN_H_\n";
result += "\n#include <stdint.h>\n\n";