NVelocity.Runtime.RuntimeInstance.showStackTrace C# (CSharp) Méthode

showStackTrace() private méthode

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