Esempio n. 1
0
 public static CloseGroupViewModel Get(ILuceneSearcher searcher, Document document)
 {
     return(new CloseGroupViewModel
     {
         LogLevel = document.Get(LogField.LOG_LEVEL),
         LogTime = DateTools.StringToDate(document.Get(LogField.LOG_TIME)).ToString("dd/MM/yyyy HH:mm:ss.fff"),
         Conclusion = document.Get(LogField.CONCLUSION),
         GroupDepth = int.Parse(document.Get(LogField.GROUP_DEPTH)),
         Exception = ExceptionViewModel.Get(searcher, document)
     });
 }
Esempio n. 2
0
 public static OpenGroupViewModel Get(ILuceneSearcher luceneSearcher, Document document)
 {
     return(new OpenGroupViewModel
     {
         LogLevel = document.Get(LogField.LOG_LEVEL),
         GroupDepth = int.Parse(document.Get(LogField.GROUP_DEPTH)),
         LogTime = DateTools.StringToDate(document.Get(LogField.LOG_TIME)).ToString("dd/MM/yyyy HH:mm:ss.fff"),
         Text = document.Get(LogField.TEXT),
         SourceFileName = document.Get(LogField.SOURCE_FILE_NAME),
         Exception = ExceptionViewModel.Get(luceneSearcher, document)
     });
 }
Esempio n. 3
0
 public static LineViewModel Get(ILuceneSearcher luceneSearcher, Document document)
 {
     return(new LineViewModel
     {
         MonitorId = document.Get(LogField.MONITOR_ID),
         GroupDepth = Int32.Parse(document.Get(LogField.GROUP_DEPTH)),
         PreviousEntryType = document.Get(LogField.PREVIOUS_ENTRY_TYPE),
         PreviousLogTime = DateTools.StringToDate(document.Get(LogField.PREVIOUS_LOG_TIME)).ToString("dd/MM/yyyy HH:mm:ss.fff"),
         LogLevel = document.Get(LogField.LOG_LEVEL),
         Text = document.Get(LogField.TEXT),
         Tags = document.Get(LogField.TAGS),
         SourceFileName = document.Get(LogField.SOURCE_FILE_NAME),
         LineNumber = document.Get(LogField.LINE_NUMBER),
         LogTime = DateTools.StringToDate(document.Get(LogField.LOG_TIME)).ToString("dd/MM/yyyy HH:mm:ss.fff"),
         Exception = ExceptionViewModel.Get(luceneSearcher, document),
         AppName = document.Get(LogField.APP_NAME)
     });
 }