/// <summary>
        ///     Add an Issues, Comments and Questions section to the report, as requested
        /// </summary>
        /// <param name="report"></param>
        private void BuildSections(FindingsReport report)
        {
            if (report.ReviewedParagraphs)
            {
                report.AddSubParagraph("Addressed findings");
                report.AddParagraph("Findings that have been reviewed by ERA, included for informational purposes only.");
            }
            else
            {
                report.AddSubParagraph("Findings");
            }

            if (addBugs)
            {
                Log.Info("..generating issues");
                report.CreateIssuesArticle(this);
            }

            if (addComments)
            {
                Log.Info("..generating remarks");
                report.CreateCommentsArticle(this);
            }

            if (addQuestions)
            {
                Log.Info("..generating questions");
                report.CreateQuestionsArticle(this);
            }

            report.CloseSubParagraph();
        }