Axiom.Samples.MousePicking.MouseSelector.Log C# (CSharp) Method

Log() private method

Logging via the LogManager
private Log ( string message ) : void
message string string
return void
		private void Log( string message )
		{
			if ( VerboseLogging == true )
			{
				LogManager.Instance.Write( message );
			}
		}
	}