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

showStackTrace() private method

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
return bool
		private bool showStackTrace()
		{
			if (configuration.IsInitialized())
			{
				return GetBoolean(RuntimeConstants.RUNTIME_LOG_WARN_STACKTRACE, false);
			}
			else
			{
				return false;
			}
		}