Exemplo n.º 1
0
        public async Task <LogEntity> LogInformation(string information)
        {
            var log = LogEntity.LogInformation(_location, information);

            return(await _repository.CreateLog(log)
                ? log
                : null);
        }