aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Logging
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-07-03 12:45:51 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-07-03 12:45:51 +0300
commitdff820daf6850f2c1403d6601d2091b8c3bfc730 (patch)
tree20581f5ab77222791c7944a62aaab3c96bce94b2 /Software/Visual_Studio/Tango.Logging
parentc9d3c1a7408f6f7a4814c1a8f5cf58a2d13e1694 (diff)
downloadTango-dff820daf6850f2c1403d6601d2091b8c3bfc730.tar.gz
Tango-dff820daf6850f2c1403d6601d2091b8c3bfc730.zip
Implemented application & embedded logs details views.
Diffstat (limited to 'Software/Visual_Studio/Tango.Logging')
-rw-r--r--Software/Visual_Studio/Tango.Logging/LogItemBase.cs5
-rw-r--r--Software/Visual_Studio/Tango.Logging/LogManager.cs2
2 files changed, 0 insertions, 7 deletions
diff --git a/Software/Visual_Studio/Tango.Logging/LogItemBase.cs b/Software/Visual_Studio/Tango.Logging/LogItemBase.cs
index c201c1d30..333b251d1 100644
--- a/Software/Visual_Studio/Tango.Logging/LogItemBase.cs
+++ b/Software/Visual_Studio/Tango.Logging/LogItemBase.cs
@@ -15,11 +15,6 @@ namespace Tango.Logging
private static String base_path;
/// <summary>
- /// Gets or sets the assembly.
- /// </summary>
- public String CallerAssembly { get; set; }
-
- /// <summary>
/// Gets or sets the caller method adding the exception.
/// </summary>
public String CallerMethodName { get; set; }
diff --git a/Software/Visual_Studio/Tango.Logging/LogManager.cs b/Software/Visual_Studio/Tango.Logging/LogManager.cs
index 4d058d1fb..673b37cb6 100644
--- a/Software/Visual_Studio/Tango.Logging/LogManager.cs
+++ b/Software/Visual_Studio/Tango.Logging/LogManager.cs
@@ -123,7 +123,6 @@ namespace Tango.Logging
if (!Categories.Contains(category)) return e;
ExceptionLogItem log = new ExceptionLogItem();
- log.CallerAssembly = Assembly.GetCallingAssembly().FullName;
log.CallerMethodName = caller;
log.CallerFile = file;
log.CallerLineNumber = lineNumber;
@@ -181,7 +180,6 @@ namespace Tango.Logging
if (!Categories.Contains(category)) return message;
MessageLogItem log = new MessageLogItem();
- log.CallerAssembly = Assembly.GetCallingAssembly().FullName;
log.CallerMethodName = caller;
log.CallerFile = file;
log.CallerLineNumber = lineNumber;