| 
					
				 | 
			
			
				@@ -25,14 +25,15 @@ public class EvpsCommServerController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @GetMapping(value = "", produces = {"application/json; charset=utf8"})
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public String info() {
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         String sep = System.lineSeparator();
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        String heading = "---------------------------------------------------------------------------------------------------------";
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        String heading = "----------------------------------------------------------------------------------------------------------------------s";
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         EvpsCenter center = ApplicationRepository.center;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         StringBuilder sb = new StringBuilder();
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         sb.append(heading).append(sep);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         sb.append("UTIC EVPS Communication Server").append(sep);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        sb.append(String.format("Process Id: %s, %s, %s", this.config.getProcessId(), this.config.getBootingTime(), TimeUtils.now())).append(sep);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        sb.append(String.format("Process Id: %s, Binding: %d, %s, %s",
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                this.config.getProcessId(), this.config.getBindingPort(), this.config.getBootingTime(), TimeUtils.now())).append(sep);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 //        sb.append(heading).append(sep);
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 //        sb.append(String.format("%s, %s", center.getCenterId(), center.getIpAddress() + sep));
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         sb.append(heading).append(sep);
 
			 |