From b4682a3abfe299c19b24752b2fb1ce2477611ec3 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Fri, 10 Apr 2020 15:06:42 +0300 Subject: Implemented FSE/PPC Logs. --- .../Tango.Integration/Logging/EmbeddedLogFileParser.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs') diff --git a/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs b/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs index 72e55bbfd..bfe1cebcc 100644 --- a/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs +++ b/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs @@ -115,5 +115,12 @@ namespace Tango.Integration.Logging } } } + + public List Parse(string file, DateTime fileDate) + { + List logs = new List(); + Parse(file, fileDate, ref logs); + return logs; + } } } -- cgit v1.3.1