@@ -219,7 +219,7 @@ auto populateCacheWith(std::shared_ptr<CCDBFetcherHelper> const& helper,
219219 } else if (meta.defaultValue .get <int >() == 2 ) {
220220 timestampToUse = std::stoi (dtc.runNumber );
221221 } else {
222- LOGP (fatal, " Undefined run-dependent option {} for spec {}/{}/{}" , meta.defaultValue .get <int >(), concrete.origin .as <std::string>(), concrete.description .as <std::string>(), int (concrete.subSpec ));
222+ LOGP (fatal, " Undefined ccdb- run-dependent option {} for spec {}/{}/{}" , meta.defaultValue .get <int >(), concrete.origin .as <std::string>(), concrete.description .as <std::string>(), int (concrete.subSpec ));
223223 }
224224 } else if (isPrefix (ccdbMetadataPrefix, meta.name )) {
225225 std::string key = meta.name .substr (ccdbMetadataPrefix.size ());
@@ -252,7 +252,7 @@ auto populateCacheWith(std::shared_ptr<CCDBFetcherHelper> const& helper,
252252 LOGP (detail, " Loading {} for timestamp {}" , path, timestampToUse);
253253 api.loadFileToMemory (v, path, metadata, timestampToUse, &headers, etag, helper->createdNotAfter , helper->createdNotBefore );
254254 if ((headers.count (" Error" ) != 0 ) || (etag.empty () && v.empty ())) {
255- LOGP (fatal, " Unable to find object {}/{}" , path, timestampToUse);
255+ LOGP (fatal, " Unable to find CCDB object {}/{}" , path, timestampToUse);
256256 // FIXME: I should send a dummy message.
257257 continue ;
258258 }
@@ -394,7 +394,7 @@ AlgorithmSpec CCDBHelpers::fetchFromCCDB()
394394 helper->lastCheckedTFCounterOrbReset = timingInfo.tfCounter ;
395395 api.loadFileToMemory (v, path, metadata, timingInfo.creation , &headers, etag, helper->createdNotAfter , helper->createdNotBefore );
396396 if ((headers.count (" Error" ) != 0 ) || (etag.empty () && v.empty ())) {
397- LOGP (fatal, " Unable to find object {}/{}" , path, timingInfo.creation );
397+ LOGP (fatal, " Unable to find CCDB object {}/{}" , path, timingInfo.creation );
398398 // FIXME: I should send a dummy message.
399399 return ;
400400 }
0 commit comments