Wallet/public/views/preferencesLogs.html
Matias Alejo Garcia f47d6b0564 view logs in UX
2015-04-25 14:42:23 -03:00

10 lines
371 B
HTML

<div class="content p20v" ng-controller="preferencesLogs as logs">
<ul class="no-bullet m0 size-14">
<li class="line-b" ng-repeat="l in logs.logs">
<span ng-class="{'text-warning': l.level=='warn', 'text-secondary': l.level=='debug', 'text-primary': l.level=='info', 'text-alert': l.level=='error' }">
{{l.msg}}
</span>
</li>
</ul>
</div>