You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// if we cannot open the metadata file, we assume that the downloaded file is not valid (etag and last-modified are left empty, so we will download it again)
273
277
} else {
274
-
LOG_INF("%s: no previous model file found %s\n", __func__, path.c_str());
275
278
if (offline) {
279
+
LOG_ERR("%s: required file is not available in cache (offline mode): %s\n", __func__, path.c_str());
276
280
returnfalse;
277
281
}
282
+
LOG_INF("%s: no previous model file found %s\n", __func__, path.c_str());
278
283
}
279
284
280
285
// Send a HEAD request to retrieve the etag and last-modified headers
0 commit comments