From 3c5019bbbb41c45b417de2913a98b70f9f3264ae Mon Sep 17 00:00:00 2001 From: alves Date: Wed, 24 Dec 2025 10:50:10 +0800 Subject: [PATCH] feature add http error msg for bury point --- src/slic3r/GUI/WebSMUserLoginDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/WebSMUserLoginDialog.cpp b/src/slic3r/GUI/WebSMUserLoginDialog.cpp index f152ad9e38..5292c4cd67 100644 --- a/src/slic3r/GUI/WebSMUserLoginDialog.cpp +++ b/src/slic3r/GUI/WebSMUserLoginDialog.cpp @@ -224,7 +224,7 @@ void SMUserLogin::OnNavigationRequest(wxWebViewEvent &evt) } }) .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); }) .perform_sync();