Debug Log shows executable path to avoid scrolling

This commit is contained in:
Michael Delpach 2016-02-20 16:36:38 +08:00
parent 8604f55f40
commit 98699b0e2a

View file

@ -38,6 +38,7 @@ public partial class DebugForm : BaseForm
public DebugForm(Logger logger)
{
InitializeComponent();
Text = $"{Application.ExecutablePath} - Debug Log";
Logger = logger;
rtbDebug.Text = Logger.ToString();