Adds some updated summary help

This commit is contained in:
Neil Dorin
2020-09-14 17:07:50 -06:00
parent db2f86aede
commit 7ea4cb8847
2 changed files with 16 additions and 0 deletions

View File

@@ -17,6 +17,9 @@ namespace PepperDash.Core.JsonToSimpl
/// </summary> /// </summary>
public string Filepath { get; private set; } public string Filepath { get; private set; }
/// <summary>
/// Fully qualified file path
/// </summary>
public string ActualFilePath { get; private set; } public string ActualFilePath { get; private set; }
// TODO: pdc-20: added to return filename back to SIMPL // TODO: pdc-20: added to return filename back to SIMPL
@@ -102,11 +105,19 @@ namespace PepperDash.Core.JsonToSimpl
return; return;
} }
} }
/// <summary>
/// Sets the debug level
/// </summary>
/// <param name="level"></param>
public void setDebugLevel(int level) public void setDebugLevel(int level)
{ {
Debug.SetDebugLevel(level, Debug.DebugTimoutMs); Debug.SetDebugLevel(level, Debug.DebugTimoutMs);
} }
/// <summary>
/// Saves the settings to a file
/// </summary>
public override void Save() public override void Save()
{ {
// this code is duplicated in the other masters!!!!!!!!!!!!! // this code is duplicated in the other masters!!!!!!!!!!!!!

View File

@@ -325,6 +325,11 @@ namespace PepperDash.Core
} }
} }
/// <summary>
/// Sets the debug level (Default timeout is 30 minutes)
/// </summary>
/// <param name="level"> Valid values 0 (no debug), 1 (critical), 2 (all messages)</param>
/// <param name="timeoutMs">Timeout value in milliseconds </param>
public static void SetDebugLevel(int level, long timeoutMs) public static void SetDebugLevel(int level, long timeoutMs)
{ {
if (level <= 2 && level > 0) if (level <= 2 && level > 0)