NVelocity.Runtime.RuntimeInstance.initializeLogger C# (CSharp) Method

initializeLogger() private method

Initialize the Velocity logging system. * @throws Exception
private initializeLogger ( ) : void
return void
		private void initializeLogger()
		{
			/*
			 * Initialize the logger. We will eventually move all
			 * logging into the logging manager.
			 */

//			if (logSystem is PrimordialLogSystem)
//			{
//				PrimordialLogSystem pls = (PrimordialLogSystem) logSystem;
//				// logSystem = LogManager.createLogSystem(this);
//				logSystem = new NullLogSystem();
//
//				/*
//				 * in the event of failure, lets do something to let it 
//				 * limp along.
//				 */
//				if (logSystem == null)
//				{
//					logSystem = new NullLogSystem();
//				}
//				else
//				{
//					pls.DumpLogMessages(logSystem);
//				}
//			}
		}