public async Task <int> Post([FromBody] Log log) { var logId = await _logProcessor.WriteToLogAsync(log.Title, log.Message); return(logId); }