From 2cc2bae70e86ff18d05a3579407b08e305b9053d Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 18 Nov 2018 12:49:31 +0200 Subject: Working on web services... --- Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Software/Visual_Studio/Tango.Logging') diff --git a/Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs b/Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs index 66a11c7df..a39f14593 100644 --- a/Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs +++ b/Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs @@ -18,11 +18,11 @@ namespace Tango.Logging /// /// Initializes a new instance of the class. /// - public VSOutputLogger() + public VSOutputLogger(String projectName = null) { Enabled = true; - _assembly_name = Assembly.GetEntryAssembly().GetName().Name + ": "; + _assembly_name = projectName != null ? projectName : Assembly.GetEntryAssembly().GetName().Name + ": "; } /// -- cgit v1.3.1