<#-- $This file is distributed under the terms of the license in /doc/license.txt$ --> <#-- Template for the raw page that displays the StartupStatus if there are warnings or errors. "raw" because this template works outside of the usual framework, in case the Freemarker context didn't initialize properly. This file can't even include a reference to an external CSS file, in case the servlet routing filters are broken. --> <#macro statusItem item> <#if item.level = "FATAL"> <#assign color = "error" > <#elseif item.level = "WARNING"> <#assign color = "warning" > <#elseif item.level = "INFO"> <#assign color = "info" > <#elseif item.level = "NOT_EXECUTED"> <#assign color = "not_executed" > <#else> <#assign color = "" > <#if item.cause??>
${item.level} ${item.shortSourceName}
${item.message}
${item.sourceName}
${item.cause}
Startup Status <#if status.errorItems?has_content>

Fatal error

VIVO detected a fatal error during startup.

<#if showLink>

Continue

<#list status.errorItems as item> <@statusItem item=item /> <#if status.warningItems?has_content>

Warning

VIVO issued warnings during startup.

<#if showLink>

Continue

<#list status.warningItems as item> <@statusItem item=item />

Startup trace

The full list of startup events and messages.

<#list status.statusItems as item> <@statusItem item=item />