NVelocity.Runtime.RuntimeInstance.showStackTrace C# (CSharp) 메소드

showStackTrace() 개인적인 메소드

Added this to check and make sure that the configuration is initialized before trying to get properties from it. This occurs when there are errors during initialization and the default properties have yet to be layed down.
private showStackTrace ( ) : bool
리턴 bool
		private bool showStackTrace()
		{
			if (configuration.IsInitialized())
			{
				return GetBoolean(RuntimeConstants.RUNTIME_LOG_WARN_STACKTRACE, false);
			}
			else
			{
				return false;
			}
		}