Skip to content

Commit

Permalink
feat: add symbol count output
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Apr 24, 2024
1 parent 516de51 commit 6232cd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pe_editor/PeEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ int generateLibFile() {
logger->error("Cannot create bedrock_server_api.lib.");
return -1;
}
logger->info("Generated bedrock_server_api.lib successfully.");
logger->info("Generated bedrock_server_api.lib successfully. Exported {} symbols.", ApiExports.size());
err = llvm::object::writeImportLibrary(
"bedrock_server_mod.exe",
(config::outputDir / config::libVarFile).string(),
Expand All @@ -195,7 +195,7 @@ int generateLibFile() {
logger->error("Cannot create bedrock_server_var.lib.");
return -1;
}
logger->info("Generated bedrock_server_var.lib successfully.");
logger->info("Generated bedrock_server_var.lib successfully. Exported {} symbols.", VarExports.size());
return 0;
}

Expand Down

0 comments on commit 6232cd7

Please sign in to comment.