diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs')
| -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()) }); |
