Refactor info message

This commit is contained in:
Emma Broman
2022-04-26 09:07:54 +02:00
parent 85fd47880a
commit dca8e1e914

View File

@@ -298,7 +298,7 @@ TargetBrowserPair* SkyBrowserModule::getPair(const std::string& id) const {
);
TargetBrowserPair* found = it != _targetsBrowsers.end() ? it->get() : nullptr;
if (found == nullptr) {
LINFO("Identifier " + id + " not found.");
LINFO(fmt::format("Identifier '{}' not found", id));
}
return found;
}