diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-01-21 18:27:13 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-01-21 18:27:13 +0200 |
| commit | de5315c050369dd7d2cc7cdc2b82e9cde0d6da24 (patch) | |
| tree | 2cf2436f58182e3841471880cee90b0993c9e033 /Software/Visual_Studio/Tango.Logging/LogManager.cs | |
| parent | e1506d483f8f7beadb1367d6a00acfb4754183fc (diff) | |
| download | Tango-de5315c050369dd7d2cc7cdc2b82e9cde0d6da24.tar.gz Tango-de5315c050369dd7d2cc7cdc2b82e9cde0d6da24.zip | |
Testing some external bridge communication..
Implemented external bridge application logs routing !!!
Diffstat (limited to 'Software/Visual_Studio/Tango.Logging/LogManager.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Logging/LogManager.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Logging/LogManager.cs b/Software/Visual_Studio/Tango.Logging/LogManager.cs index 04c66a71f..98bcaaa28 100644 --- a/Software/Visual_Studio/Tango.Logging/LogManager.cs +++ b/Software/Visual_Studio/Tango.Logging/LogManager.cs @@ -190,6 +190,15 @@ namespace Tango.Logging } /// <summary> + /// Appends the specified log item. + /// </summary> + /// <param name="logItem">The log item.</param> + public void Log(LogItemBase logItem) + { + AppendLog(logItem); + } + + /// <summary> /// Logs the current referenced assemblies in the app domain. /// </summary> public void LogReferencedAssemblies() |
