diff --git a/Pepperdash Core/Pepperdash Core/Device.cs b/Pepperdash Core/Pepperdash Core/Device.cs index 99968e0..6f02fc4 100644 --- a/Pepperdash Core/Pepperdash Core/Device.cs +++ b/Pepperdash Core/Pepperdash Core/Device.cs @@ -54,11 +54,6 @@ namespace PepperDash.Core // Config = config; //} - public void EnableUsageTracker() - { - UsageTracker = new UsageTracker(); - } - public void AddPreActivationAction(Action act) { if (_PreActivationActions == null) diff --git a/Pepperdash Core/Pepperdash Core/Logging/Debug.cs b/Pepperdash Core/Pepperdash Core/Logging/Debug.cs index 3dbb794..fe64a0d 100644 --- a/Pepperdash Core/Pepperdash Core/Logging/Debug.cs +++ b/Pepperdash Core/Pepperdash Core/Logging/Debug.cs @@ -138,7 +138,7 @@ namespace PepperDash.Core public static void Console(uint level, string format, params object[] items) { if (Level >= level) - CrestronConsole.PrintLine("App {0}:{1}", InitialParametersClass.ApplicationNumber, + CrestronConsole.PrintLine("[{0}]App {1}:{2}", DateTime.Now.ToString("HH:mm:ss.fff"), InitialParametersClass.ApplicationNumber, string.Format(format, items)); }