mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2025-12-27 20:53:17 +09:00
Added WARN to log types
This commit is contained in:
@@ -3,7 +3,7 @@ package it.fabioformosa.quartzmanager.jobs.entities;
|
||||
public class LogRecord {
|
||||
|
||||
public enum LogType {
|
||||
INFO, ERROR;
|
||||
INFO, WARN, ERROR;
|
||||
}
|
||||
|
||||
private LogType type;
|
||||
|
||||
@@ -22,6 +22,10 @@
|
||||
color: red;
|
||||
}
|
||||
|
||||
.dark-yellow{
|
||||
color: #d8dc25;
|
||||
}
|
||||
|
||||
#schedulerControllerBtn{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@@ -5,7 +5,9 @@
|
||||
</div>
|
||||
<div class="col-xs-2">
|
||||
<span data-ng-class="{'animated zoomIn firstLog': $first}">
|
||||
<i data-ng-class="{'fa fa-check-circle green': log.type == 'INFO', 'fa fa-times-circle red': log.type == 'ERROR'}"></i>
|
||||
<i data-ng-class="{'fa fa-check-circle green': log.type == 'INFO',
|
||||
'fa fa-exclamation-triangle dark-yellow': log.type == 'WARN',
|
||||
'fa fa-times-circle red': log.type == 'ERROR'}"></i>
|
||||
</span>
|
||||
</div>
|
||||
<div class="col-xs-7">
|
||||
|
||||
Reference in New Issue
Block a user