From c6a07d558d58366f1f13d8d928a1c64d9c18df5a Mon Sep 17 00:00:00 2001 From: simonmicro Date: Sat, 6 Apr 2024 10:27:33 +0200 Subject: [PATCH] Explain the user what is going on Signed-off-by: simonmicro --- src/apps/_experiments/OswAppWeather.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps/_experiments/OswAppWeather.cpp b/src/apps/_experiments/OswAppWeather.cpp index 45e826c64..db0e790b6 100644 --- a/src/apps/_experiments/OswAppWeather.cpp +++ b/src/apps/_experiments/OswAppWeather.cpp @@ -370,6 +370,7 @@ bool OswAppWeather::loadData() { inFile.open("file_weather.json"); //open the input file if(!inFile.is_open()) { OSW_LOG_E("Unable to open 'file_weather.json' in the current working directory"); + OSW_LOG_W("→ Because the emaulator has no HTTP-capabilities (yet), you need to provide this file manually for now."); // error handling will be done below as the string is empty } std::stringstream strStream;