From 0b4949057c4249635ca569ab010c7c903069a254 Mon Sep 17 00:00:00 2001 From: iejMac Date: Mon, 26 Apr 2021 10:16:57 -0700 Subject: [PATCH] print error when HttpRequest fails old-commit-hash: a8e231f8b1805f4b2f9b6692d9c3d0c2c6728087 --- selfdrive/ui/qt/api.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/selfdrive/ui/qt/api.cc b/selfdrive/ui/qt/api.cc index eb4603b5d..b9a5368b2 100644 --- a/selfdrive/ui/qt/api.cc +++ b/selfdrive/ui/qt/api.cc @@ -129,6 +129,7 @@ void HttpRequest::requestFinished(){ if (!cache_key.isEmpty()) { Params().remove(cache_key.toStdString()); } + qDebug() << reply->errorString(); emit failedResponse(reply->errorString()); } } else {