diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-18 12:49:31 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-18 12:49:31 +0200 |
| commit | 2cc2bae70e86ff18d05a3579407b08e305b9053d (patch) | |
| tree | 2c2b1abd5bc7c184da99d9c5ed3fb8a0fa054c73 /Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs | |
| parent | 7fbf2f7cf8e2b52d83909b12658c30209f81b2bd (diff) | |
| download | Tango-2cc2bae70e86ff18d05a3579407b08e305b9053d.tar.gz Tango-2cc2bae70e86ff18d05a3579407b08e305b9053d.zip | |
Working on web services...
Diffstat (limited to 'Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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 /// <summary> /// Initializes a new instance of the <see cref="VSOutputLogger"/> class. /// </summary> - public VSOutputLogger() + public VSOutputLogger(String projectName = null) { Enabled = true; - _assembly_name = Assembly.GetEntryAssembly().GetName().Name + ": "; + _assembly_name = projectName != null ? projectName : Assembly.GetEntryAssembly().GetName().Name + ": "; } /// <summary> |
