Wallet/public/views/preferencesLogs.html

10 lines
371 B
HTML
Raw Normal View History

2015-04-25 12:37:04 -03:00
<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>