@@ -39,7 +39,7 @@ public class MainUI {
private SubUIController subUIController = null;
private JFrame jFrame = null;
- private final OperatingSystemMXBean osBean = (com.sun.management.OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();
+ private final OperatingSystemMXBean osBean = (OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();
private Timer timer;
private Long tick = Long.valueOf(0);
private TbPisInfr selObj = null;
@@ -41,7 +41,7 @@ spring:
jwt:
secret: gumiutispisqwe123!@#
profiles:
- active: prod
+ active: dev
main:
banner-mode: off
mvc:
@@ -19,6 +19,13 @@ public class PisCommServerApplicationTests {
// Json String to Class
//CpuNodeStatusDTO status = this.mapper.readValue(message, CpuNodeStatusDTO.class);
+
+ double sped1 = 14.3;
+ double sped2 = 14.9;
+ log.error("SPED1: {}, {}, {}, {}", sped1, (int)sped1, String.valueOf(sped1), String.valueOf(Math.round(sped1)));
+ log.error("SPED2: {}, {}, {}, {}", sped2, (int)sped2, String.valueOf(sped2), String.valueOf(Math.round(sped2)));
}