diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-26 20:16:50 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-26 20:16:50 +0300 |
| commit | 9966def5db7b3738c0dea19ddf43c52127b761f8 (patch) | |
| tree | 2d630ab190064556abab00923dbb856690ec28d6 /Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs | |
| parent | 1a21077475edb10a9a0e038314f8c90f88d65111 (diff) | |
| download | Tango-9966def5db7b3738c0dea19ddf43c52127b761f8.tar.gz Tango-9966def5db7b3738c0dea19ddf43c52127b761f8.zip | |
Implemented External Bridge Service on PPC.
Fixed an issue in transport layer with contains token.
Added timeout & continuous timeout to message container.
Diffstat (limited to 'Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs b/Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs index c2cd32437..3804bdaa3 100644 --- a/Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs +++ b/Software/Visual_Studio/Tango.Logging/VSOutputLogger.cs @@ -27,10 +27,7 @@ namespace Tango.Logging /// <param name="output">The output.</param> public void OnLog(LogItemBase output) { - if (output.Category != LogCategory.Debug) - { - Debug.WriteLine(output.ToString()); - } + Debug.WriteLine(output.ToString()); } private bool _isEnabled; |
