Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
{% for message in log.split("\n") %}
    {% if "WARNING" in message %}
        <p style="font-family: monospace; margin: 0; font-weight: bold; color: orange;">{{ message | html_escape }}</p>
    {% elif "CRITICAL" in message %}
        <p style="font-family: monospace; margin: 0; font-weight: bold; color: orangered;">{{ message | html_escape }}</p>
    {% elif "ERROR" in message %}
        <p style="font-family: monospace; margin: 0; font-weight: bold; color: crimson;">{{ message | html_escape }}</p>
    {% else %}
        <p style="font-family: monospace; margin: 0;">{{ message | html_escape }}</p>
    {% endif %}
{% endfor %}