diff --git a/httpserver/staticfilecontroller.cpp b/httpserver/staticfilecontroller.cpp
index bdc8929d0..72fdb9aef 100644
--- a/httpserver/staticfilecontroller.cpp
+++ b/httpserver/staticfilecontroller.cpp
@@ -143,6 +143,7 @@ void StaticFileController::service(QByteArray& path, HttpResponse& response)
}
else
{
+ qWarning("StaticFileController: File %s not found",qPrintable(file.fileName()));
response.setStatus(404,"not found");
response.write("404 not found",true);
}
diff --git a/sdrbase/webapi/webapirequestmapper.cpp b/sdrbase/webapi/webapirequestmapper.cpp
index 80e05d4ae..004d20caf 100644
--- a/sdrbase/webapi/webapirequestmapper.cpp
+++ b/sdrbase/webapi/webapirequestmapper.cpp
@@ -16,6 +16,8 @@
// along with this program. If not, see . //
///////////////////////////////////////////////////////////////////////////////////
+//#include
+
#include "httpdocrootsettings.h"
#include "webapirequestmapper.h"
#include "SWGInstanceSummaryResponse.h"
@@ -71,6 +73,11 @@ void WebAPIRequestMapper::service(qtwebapp::HttpRequest& request, qtwebapp::Http
}
else
{
+// QDirIterator it(":", QDirIterator::Subdirectories);
+// while (it.hasNext()) {
+// qDebug() << "WebAPIRequestMapper::service: " << it.next();
+// }
+
QByteArray path = "/index.html";
m_staticFileController->service(path, response);
//response.setStatus(404,"Not found");
diff --git a/sdrgui/resources/res.qrc b/sdrgui/resources/res.qrc
index 1a7c8985a..72082d716 100644
--- a/sdrgui/resources/res.qrc
+++ b/sdrgui/resources/res.qrc
@@ -5,7 +5,6 @@
microphone.png
checkmark.png
questionmark.png
- res.qrc
export.png
import.png
compressed.png