Loaded metadata

{%- if collector.loadedMetadata is empty -%}

No metadata have been loaded.

{%- else -%} {#
#} {#
#} {# Runs#} {# {{ collector.loadedMetadata|length }}#} {#
#} {#
#} {%- for class, files in collector.loadedMetadata -%} {%- endfor -%}
Class File
{{ class }} {%- for file in files -%} {{ file }}
{% endfor %}
{%- endif -%}

Attempted files

{%- if collector.metadataFiles is empty -%}

No metadata files attempted (if this list is empty, probably all the data are cached as expected)

{%- else -%} {%- for class, files in collector.metadataFiles -%} {%- endfor -%}
Class Files
{{ class }} {%- for file, found in files -%} {{ file }} ({{ found ? 'found': 'not found' }})
{% endfor %}
{%- endif -%}

Configured metadata directories

{%- for prefix, path in collector.loadedDirs -%} {%- endfor -%}
Prefix Path
{{ prefix }} {{ path }}