Axiom.Core.Log.Dispose C# (CSharp) Method

Dispose() public method

Called to dispose of this objects resources.
For the log, closes any open file streams and file writers.
public Dispose ( ) : void
return void
		public void Dispose()
		{
			try
			{
				if ( writer != null )
					writer.Close();

				if ( log != null )
					log.Close();
			}
			catch
			{
			}
			_isDisposed = true;
		}