aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-10-12 11:13:20 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-10-12 11:13:20 +0300
commit391c775329612b5e9ee3726c25da3b4aa6048280 (patch)
tree61f18da158bc073f19da7dcfba7e7d2d5d58a3b7 /Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs
parentce5c7688337926ded0ee0778819f26b668cfc1d7 (diff)
downloadTango-391c775329612b5e9ee3726c25da3b4aa6048280.tar.gz
Tango-391c775329612b5e9ee3726c25da3b4aa6048280.zip
PMR IFS.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Logging/EmbeddedLogFileParser.cs6
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())
});