diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-10-12 11:13:20 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-10-12 11:13:20 +0300 |
| commit | 391c775329612b5e9ee3726c25da3b4aa6048280 (patch) | |
| tree | 61f18da158bc073f19da7dcfba7e7d2d5d58a3b7 /Software/Visual_Studio/Tango.Integration/Logging | |
| parent | ce5c7688337926ded0ee0778819f26b668cfc1d7 (diff) | |
| download | Tango-391c775329612b5e9ee3726c25da3b4aa6048280.tar.gz Tango-391c775329612b5e9ee3726c25da3b4aa6048280.zip | |
PMR IFS.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Logging')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs b/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs index bfe1cebcc..7e3e45c54 100644 --- a/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs +++ b/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs @@ -99,9 +99,9 @@ namespace Tango.Integration.Logging { Category = (PMR.Debugging.DebugLogCategory)Enum.Parse(typeof(PMR.Debugging.DebugLogCategory), entries[1]), FileName = entries[3], - LineNumber = uint.Parse(entries[5]), - ModuleId = uint.Parse(entries[7]), - Filter = uint.Parse(entries[9]), + LineNumber = int.Parse(entries[5]), + ModuleId = int.Parse(entries[7]), + Filter = int.Parse(entries[9]), Message = new String(entries[10].Skip(2).ToArray()) }); |
