early-access version 2994
This commit is contained in:
parent
d809a96a95
commit
5e735df817
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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", ""};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue