Show log level in popover of icon.

This commit is contained in:
Jan Böhmer 2020-03-07 17:20:01 +01:00
parent 41074f70ed
commit 254d4e6c69

View file

@ -146,7 +146,11 @@ class LogDataTable implements DataTableTypeInterface
break; break;
} }
return sprintf('<i class="fas fa-fw %s"></i>', $symbol); return sprintf(
'<i class="fas fa-fw %s" title="%s"></i>',
$symbol,
$context->getLevelString()
);
}, },
]); ]);