Remove exception logging for connection error; closes #40
This commit is contained in:
parent
873f39d574
commit
333aa73be5
|
@ -81,24 +81,15 @@ class AjaxController extends Controller
|
||||||
$client = Node::guzzleRequest($server->node);
|
$client = Node::guzzleRequest($server->node);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
$res = $client->request('GET', '/server', [
|
$res = $client->request('GET', '/server', [
|
||||||
'headers' => Server::getGuzzleHeaders($uuid)
|
'headers' => Server::getGuzzleHeaders($uuid)
|
||||||
]);
|
]);
|
||||||
|
|
||||||
if($res->getStatusCode() === 200) {
|
if($res->getStatusCode() === 200) {
|
||||||
return response()->json(json_decode($res->getBody()));
|
return response()->json(json_decode($res->getBody()));
|
||||||
} else {
|
|
||||||
return response()->json([]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (RequestException $e) {
|
} catch (RequestException $e) {
|
||||||
Log::notice('An exception was raised while attempting to contact a daemon instance to get server status information.', [
|
//
|
||||||
'exception' => $e->getMessage(),
|
|
||||||
'path' => $request->path()
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return response()->json([]);
|
return response()->json([]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue