Open.Core.LogWriter.NewSection C# (CSharp) Method

NewSection() public method

Inserts a new section divider.
public NewSection ( ) : void
return void
        public void NewSection()
        {
            if (!CanWrite) return;
            if (!canInsertSection) return;

            View.Divider(LogDivider.Section);
            canInsertSection = false;
        }
        #endregion