mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-01-11 19:44:44 +00:00
Adds some updated summary help
This commit is contained in:
@@ -17,6 +17,9 @@ namespace PepperDash.Core.JsonToSimpl
|
||||
/// </summary>
|
||||
public string Filepath { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Fully qualified file path
|
||||
/// </summary>
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets the debug level
|
||||
/// </summary>
|
||||
/// <param name="level"></param>
|
||||
public void setDebugLevel(int level)
|
||||
{
|
||||
Debug.SetDebugLevel(level, Debug.DebugTimoutMs);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Saves the settings to a file
|
||||
/// </summary>
|
||||
public override void Save()
|
||||
{
|
||||
// this code is duplicated in the other masters!!!!!!!!!!!!!
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
if (level <= 2 && level > 0)
|
||||
|
||||
Reference in New Issue
Block a user