コード例 #1
0
ファイル: LoggingService.cs プロジェクト: onetug/CodeCamp2011
 public void CreateLogEntry(LogEntry entry)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: LoggingService.cs プロジェクト: onetug/CodeCamp2011
 public void LogException(CodeCampAuthorizationException codeCampException)
 {
     //TODO JAS Do something with the log entry thingee
     var entry = new LogEntry(codeCampException.GetBaseException().Message);            
 }