1
0
mirror of https://bitbucket.org/cjdskunkworks/lynxastrodewcontroller.git synced 2026-05-03 17:28:52 +00:00

Redone the log messages

This commit is contained in:
2021-02-24 16:06:35 +00:00
parent a13c6e8f1e
commit 7e19f47246
3 changed files with 38 additions and 13 deletions
+3 -3
View File
@@ -16,7 +16,7 @@ namespace ASCOM.LynxAstro.DewController
/// <summary>
/// Driver description that displays in the ASCOM Chooser.
/// </summary>
protected static readonly string DriverDescription = "Meade Generic";
protected static readonly string DriverDescription = "LynxAstro.DewController";
protected static string ComPort; // Variables to hold the currrent device configuration
@@ -34,7 +34,7 @@ namespace ASCOM.LynxAstro.DewController
protected void Initialise(string className)
{
Tl = new TraceLogger("", $"Meade.Generic.{className}");
Tl = new TraceLogger("", $"LynxAstro.DewController.{className}");
ReadProfile(); // Read device configuration from the ASCOM Profile store
@@ -78,7 +78,7 @@ namespace ASCOM.LynxAstro.DewController
{
get
{
Tl.LogMessage("Description Get", DriverDescription);
LogMessage("Description Get", DriverDescription);
return DriverDescription;
}
}