From 5e735df817b086ac10b3f5d488d3e0fc9032f265 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Wed, 5 Oct 2022 23:56:32 +0200 Subject: [PATCH] early-access version 2994 --- README.md | 2 +- src/web_service/web_backend.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 58c473e7f..6507bc74a 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2993. +This is the source code for early-access 2994. ## Legal Notice diff --git a/src/web_service/web_backend.cpp b/src/web_service/web_backend.cpp index 378804c08..12a7e4922 100755 --- a/src/web_service/web_backend.cpp +++ b/src/web_service/web_backend.cpp @@ -111,7 +111,8 @@ struct Client::Impl { httplib::Error error; if (!cli->send(request, response, error)) { - LOG_ERROR(WebService, "{} to {} returned null", method, host + path); + LOG_ERROR(WebService, "{} to {} returned null (httplib Error: {})", method, host + path, + httplib::to_string(error)); return WebResult{WebResult::Code::LibError, "Null response", ""}; }