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();