diff --git a/Pepperdash Core/Pepperdash Core/JsonToSimpl/JsonToSimplFileMaster.cs b/Pepperdash Core/Pepperdash Core/JsonToSimpl/JsonToSimplFileMaster.cs
index 2f4b2f5..cb6f720 100644
--- a/Pepperdash Core/Pepperdash Core/JsonToSimpl/JsonToSimplFileMaster.cs
+++ b/Pepperdash Core/Pepperdash Core/JsonToSimpl/JsonToSimplFileMaster.cs
@@ -17,6 +17,9 @@ namespace PepperDash.Core.JsonToSimpl
///
public string Filepath { get; private set; }
+ ///
+ /// Fully qualified file path
+ ///
public string ActualFilePath { get; private set; }
// TODO: pdc-20: added to return filename back to SIMPL
@@ -102,11 +105,19 @@ namespace PepperDash.Core.JsonToSimpl
return;
}
}
+
+ ///
+ /// Sets the debug level
+ ///
+ ///
public void setDebugLevel(int level)
{
Debug.SetDebugLevel(level, Debug.DebugTimoutMs);
}
+ ///
+ /// Saves the settings to a file
+ ///
public override void Save()
{
// this code is duplicated in the other masters!!!!!!!!!!!!!
diff --git a/Pepperdash Core/Pepperdash Core/Logging/Debug.cs b/Pepperdash Core/Pepperdash Core/Logging/Debug.cs
index 004e3b8..898495f 100644
--- a/Pepperdash Core/Pepperdash Core/Logging/Debug.cs
+++ b/Pepperdash Core/Pepperdash Core/Logging/Debug.cs
@@ -325,6 +325,11 @@ namespace PepperDash.Core
}
}
+ ///
+ /// Sets the debug level (Default timeout is 30 minutes)
+ ///
+ /// Valid values 0 (no debug), 1 (critical), 2 (all messages)
+ /// Timeout value in milliseconds
public static void SetDebugLevel(int level, long timeoutMs)
{
if (level <= 2 && level > 0)