From 07e686eb253ffd29f36dbe530b3a17633e02b353 Mon Sep 17 00:00:00 2001 From: Roy Date: Sat, 10 Feb 2018 02:13:37 +0200 Subject: Added support for motor controllers. --- Software/Visual_Studio/Tango.Logging/FileLogger.cs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'Software/Visual_Studio/Tango.Logging/FileLogger.cs') diff --git a/Software/Visual_Studio/Tango.Logging/FileLogger.cs b/Software/Visual_Studio/Tango.Logging/FileLogger.cs index ca17aa367..75c6e529e 100644 --- a/Software/Visual_Studio/Tango.Logging/FileLogger.cs +++ b/Software/Visual_Studio/Tango.Logging/FileLogger.cs @@ -45,16 +45,7 @@ namespace Tango.Logging /// Called when a new library trace is available. /// /// The output. - public void OnTrace(LogItemBase output) - { - OnError(output); - } - - /// - /// Called when a new library exception is available. - /// - /// The output. - public void OnError(LogItemBase output) + public void OnLog(LogItemBase output) { File.AppendAllText(LogFile, output.ToString() + Environment.NewLine); } -- cgit v1.3.1