feature add bury point for slice model and use soft, login soft.

This commit is contained in:
alves
2025-12-16 15:39:38 +08:00
parent d7b4755c00
commit 005e45bd0a
8 changed files with 99 additions and 17 deletions

View File

@@ -6296,11 +6296,11 @@ extern "C" {
int main(int argc, char **argv)
{
initSentry();
std::string softStartTime = BP_SOFT_START_TIME+ ":" + get_timestamp_seconds();
sentryReportLog(SENTRY_LOG_TRACE, softStartTime, BP_START_SOFT);
auto soft_start_time = get_time_timestamp();
auto res = CLI().run(argc, argv);
auto soft_end_time = get_time_timestamp();
std::string softEndTime = BP_SOFT_END_TIME + ":" + get_timestamp_seconds();
std::string softEndTime = BP_SOFT_WORKS_TIME + std::string(":") + get_works_time(soft_end_time - soft_start_time);
sentryReportLog(SENTRY_LOG_TRACE, softEndTime, BP_START_SOFT);
exitSentry();