コード例 #1
0
ファイル: LogService.cs プロジェクト: ChrWalte/LoggingService
        public async Task <LogEntity> LogWarning(string information)
        {
            var log = LogEntity.LogWarning(_location, information);

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