mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-31 14:52:06 +00:00
feature add http error msg for bury point
This commit is contained in:
@@ -224,7 +224,7 @@ void SMUserLogin::OnNavigationRequest(wxWebViewEvent &evt)
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.on_error([&](std::string body, std::string error, unsigned status) {
|
.on_error([&](std::string body, std::string error, unsigned status) {
|
||||||
std::string http_code = BP_LOGIN_HTTP_CODE + string(":") + std::to_string(status);
|
std::string http_code = BP_LOGIN_HTTP_CODE + string(":") + std::to_string(status) + "\n" + error + "\n" + body;
|
||||||
sentryReportLog(SENTRY_LOG_TRACE, http_code, BP_LOGIN);
|
sentryReportLog(SENTRY_LOG_TRACE, http_code, BP_LOGIN);
|
||||||
})
|
})
|
||||||
.perform_sync();
|
.perform_sync();
|
||||||
|
|||||||
Reference in New Issue
Block a user