123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
-
- /* TwigBundle:Exception:logs.html.twig */
- class __TwigTemplate_ef1c58cf39ed62ae75fd920dac7985b4 extends Twig_Template
- {
- protected function doDisplay(array $context, array $blocks = array())
- {
- $context = array_merge($this->env->getGlobals(), $context);
-
- // line 1
- echo "<ol class=\"traces\">
- ";
- // line 2
- $context['_parent'] = (array) $context;
- $context['_seq'] = twig_ensure_traversable($this->getContext($context, 'logs'));
- foreach ($context['_seq'] as $context['_key'] => $context['log']) {
- // line 3
- echo " <li";
- if (twig_in_filter($this->getAttribute($this->getContext($context, 'log'), "priorityName", array(), "any", false), array(0 => "EMERG", 1 => "ERR", 2 => "CRIT", 3 => "ALERT", 4 => "ERROR", 5 => "CRITICAL"))) {
- echo " class=\"error\"";
- }
- echo ">
- ";
- // line 4
- echo twig_escape_filter($this->env, $this->getAttribute($this->getContext($context, 'log'), "message", array(), "any", false), "html");
- echo "
- </li>
- ";
- }
- $_parent = $context['_parent'];
- unset($context['_seq'], $context['_iterated'], $context['_key'], $context['log'], $context['_parent'], $context['loop']);
- $context = array_merge($_parent, array_intersect_key($context, $_parent));
- // line 7
- echo "</ol>
- ";
- }
-
- public function getTemplateName()
- {
- return "TwigBundle:Exception:logs.html.twig";
- }
-
- public function isTraitable()
- {
- return false;
- }
- }
|