From 752208e5239fec011efcb5b18e71ad9a6f534e50 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Fri, 3 Mar 2023 01:44:38 -0800 Subject: [PATCH] spam the log less --- .../autotest/src/main/java/com/rusefi/TestingUtils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/java_console/autotest/src/main/java/com/rusefi/TestingUtils.java b/java_console/autotest/src/main/java/com/rusefi/TestingUtils.java index fd4c7fc170..6d972c641f 100644 --- a/java_console/autotest/src/main/java/com/rusefi/TestingUtils.java +++ b/java_console/autotest/src/main/java/com/rusefi/TestingUtils.java @@ -107,14 +107,14 @@ public class TestingUtils { public static EngineChart nextChart(CommandQueue commandQueue) { long start = System.currentTimeMillis(); EngineChart chart = EngineChartParser.unpackToMap(getNextWaveChart(commandQueue)); - FileLog.MAIN.logLine("AUTOTEST nextChart() in " + (System.currentTimeMillis() - start)); + // FileLog.MAIN.logLine("AUTOTEST nextChart() in " + (System.currentTimeMillis() - start)); return chart; } static String getNextWaveChart(CommandQueue commandQueue) { IoUtil.sendBlockingCommand(Fields.CMD_RESET_ENGINE_SNIFFER, commandQueue); String result = getEngineChart(commandQueue); - FileLog.MAIN.logLine("current chart: " + result); + // FileLog.MAIN.logLine("current chart: " + result); return result; } @@ -129,7 +129,7 @@ public class TestingUtils { final AtomicReference result = new AtomicReference<>(); - FileLog.MAIN.logLine("waiting for next chart"); + // FileLog.MAIN.logLine("waiting for next chart"); commandQueue.getLinkManager().getEngineState().replaceStringValueAction(EngineReport.ENGINE_CHART, new EngineState.ValueCallback() { @Override public void onUpdate(String value) {