Added entity creation

This commit is contained in:
2025-12-21 00:57:47 +01:00
parent 20fc309b07
commit 8329beeca7
2 changed files with 306 additions and 1 deletions

View File

@@ -85,7 +85,7 @@ public class EntityController : ControllerBase
} catch (Exception ex)
{
if (ex.InnerException is not null) ex = ex.InnerException;
_logger.LogError("Unable to index the provided entities. {ex.Message}", [ex.Message]);
_logger.LogError("Unable to index the provided entities. {ex.Message} - {ex.StackTrace}", [ex.Message, ex.StackTrace]);
return Ok(new EntityIndexResult() { Success = false, Message = ex.Message });
}