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;
			}
		}