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

This commit is contained in:
Gary Talent 2025-03-24 20:44:33 -05:00
parent a44c5acc4b
commit ed5f424eb0

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;