[keel] Add missing new line to log message
All checks were successful
Build / build (push) Successful in 1m25s

This commit is contained in:
Gary Talent 2025-03-24 20:44:33 -05:00
parent 36fc25fb7e
commit ab11b885e6

View File

@ -68,7 +68,7 @@ constexpr auto makeLoader(Context &ctx) {
if (!beginsWith(assetId, "/")) { if (!beginsWith(assetId, "/")) {
auto const p = ctx.uuidToPath.at(assetId); auto const p = ctx.uuidToPath.at(assetId);
if (p.error) { if (p.error) {
oxErrf("Could not find asset: {}", assetId); oxErrf("Could not find asset: {}\n", assetId);
return ox::Error{1, "Asset ID not found"}; return ox::Error{1, "Asset ID not found"};
} }
assetId = *p.value; assetId = *p.value;