private string GetLogFilename()
    {
        string folder = GetLogPath();

        return(string.Format("{0}/sessionLog_{1}_{2}.{3}",
                             folder,
                             currentDate,
                             exerciseManager.GetInstanceID(),
                             "txt"));
    }