CSharpLogger.Logger.RestartFlushes C# (CSharp) Method

RestartFlushes() public method

Logging will flush to file after each log call. Forces an immediate flush
public RestartFlushes ( ) : void
return void
        public void RestartFlushes()
        {
            flushHold = false;
            Flush();
        }