|
@@ -49,14 +49,14 @@
|
|
|
}
|
|
|
.entity_list .warn:last-child{
|
|
|
color: #4D7BFE;
|
|
|
- background: #ff9d58;
|
|
|
+ background: #f1bc96;
|
|
|
}
|
|
|
.entity_list .error{
|
|
|
color: #fc0212;
|
|
|
}
|
|
|
.entity_list .error:last-child{
|
|
|
color: #333;
|
|
|
- background: #f4616c;
|
|
|
+ background: #fa9299;
|
|
|
}
|
|
|
.entity_list::-webkit-scrollbar{
|
|
|
width: 0;
|
|
@@ -210,7 +210,7 @@
|
|
|
if(result.LogType==='Error'||result.LogType==='Fault'){
|
|
|
thread+='<li class="error">'+result.timeStr+' '+result.entityName+' '+result.message+'</li>'
|
|
|
}
|
|
|
- else if(result.LogType==='Warning'&&(result.LogLevel==='2'||result.LogLevel==='3')){
|
|
|
+ else if(result.LogType==='Warning'&&(result.logLevel===2||result.logLevel===3)){
|
|
|
thread+='<li class="warn">'+result.timeStr+' '+result.entityName+' '+result.message+'</li>'
|
|
|
}else{
|
|
|
thread+='<li>'+result.timeStr+' '+result.entityName+' '+result.message+'</li>'
|