Bring Tech Debt up to current Development
This commit is contained in:
@@ -104,16 +104,34 @@ namespace Volian.Base.Library
|
||||
public static bool IsOpen => _MyDebugPrint.IsOpen;
|
||||
}
|
||||
// C2018-004 create meta file for baseline compares
|
||||
public static class BaselineMetaFile
|
||||
{
|
||||
private static readonly DebugPrint _MyDebugPrint = new DebugPrint();
|
||||
public static void Open(string fileName) => _MyDebugPrint.Open(fileName);
|
||||
public static void Close() => _MyDebugPrint.Close();
|
||||
public static void Write(string format, params object[] args) => _MyDebugPrint.Write(format, args);
|
||||
public static void WriteLine(string format, params object[] args) => _MyDebugPrint.WriteLine(format, args);
|
||||
public static void Show() => _MyDebugPrint.Show();
|
||||
public static bool IsOpen => _MyDebugPrint.IsOpen;
|
||||
|
||||
public static bool IncludeWordSecText { get; set; } = true;
|
||||
}
|
||||
public static class BaselineMetaFile
|
||||
{
|
||||
private static readonly DebugPrint _MyDebugPrint = new DebugPrint();
|
||||
private static readonly DebugPrint _MyDebugPrint_Truncated = new DebugPrint();
|
||||
public static void Open(string fileName)
|
||||
{
|
||||
_MyDebugPrint.Open(fileName);
|
||||
_MyDebugPrint_Truncated.Open(fileName.Replace(".txt", "_Truncated.txt"));
|
||||
}
|
||||
public static void Close()
|
||||
{
|
||||
_MyDebugPrint.Close();
|
||||
_MyDebugPrint_Truncated.Close();
|
||||
}
|
||||
public static void WriteLine(string format, params object[] args)
|
||||
{
|
||||
_MyDebugPrint_Truncated.WriteLine(format, args);
|
||||
_MyDebugPrint.WriteLine(format, args);
|
||||
}
|
||||
public static void WriteLineTruncate(string format, params object[] args) => _MyDebugPrint_Truncated.WriteLine(format, args);
|
||||
public static void WriteLineLegacy(string format, params object[] args) => _MyDebugPrint.WriteLine(format, args);
|
||||
public static void Show()
|
||||
{
|
||||
_MyDebugPrint.Show();
|
||||
_MyDebugPrint_Truncated.Show();
|
||||
}
|
||||
public static bool IsOpen => _MyDebugPrint.IsOpen;
|
||||
|
||||
public static bool IncludeWordSecText { get; set; } = true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user