Fix typo error when we print curl error message 92/301892/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Mon, 27 Nov 2023 05:07:23 +0000 (14:07 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Mon, 27 Nov 2023 05:07:23 +0000 (14:07 +0900)
Change-Id: I1581a2d33dab63754c71f805e44b4d306d65a7b2
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali/internal/imaging/common/file-download.cpp

index a61ce3a..47efd49 100644 (file)
@@ -50,7 +50,7 @@ inline void LogCurlResult(CURLcode result, char* errorBuffer, std::string url, s
     }
     else
     {
-      DALI_LOG_ERROR("$s \"%s\" with error code %d (%s)\n", prefix.c_str(), url.c_str(), result, errorBuffer);
+      DALI_LOG_ERROR("%s \"%s\" with error code %d (%s)\n", prefix.c_str(), url.c_str(), result, errorBuffer);
     }
   }
 }