Skip to content
Snippets Groups Projects
Commit dc12c5af authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Fix to remove bad log fatal

parent a40e4010
No related branches found
No related tags found
No related merge requests found
Pipeline #16517 passed
......@@ -290,7 +290,8 @@ json_t &ftl::config::resolve(const std::string &puri, bool eager) {
std::string u = uri.getBaseURI();
auto ix = config_index.find(u);
if (ix == config_index.end()) {
LOG(FATAL) << "Cannot find resource: " << u;
LOG(WARNING) << "Cannot find resource: " << u;
return null_json;
}
auto ptr = nlohmann::json::json_pointer("/"+uri.getFragment());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment