logging of live data structs was: data points fix #3614
we now have what Martin has asked for :)
This commit is contained in:
parent
0b61af507f
commit
f55ad6ff23
Binary file not shown.
|
@ -223,7 +223,6 @@ public class ConfigDefinition {
|
|||
* we have '-readfile OUTPUTS_SECTION' in one of .sh files in order to template rusefi.input
|
||||
* Same with '-readfile DATALOG_SECTION'
|
||||
*/
|
||||
state.destinations.add(new DataLogConsumer(tsOutputsDestination + File.separator + "generated/data_logs.ini"));
|
||||
state.destinations.add(new GaugeConsumer(tsOutputsDestination + File.separator + "generated/gauges.ini"));
|
||||
}
|
||||
if (tsInputFileFolder != null) {
|
||||
|
|
|
@ -3,9 +3,7 @@ package com.rusefi.ldmp;
|
|||
import com.devexperts.logging.Logging;
|
||||
import com.rusefi.ConfigDefinition;
|
||||
import com.rusefi.ReaderState;
|
||||
import com.rusefi.output.FragmentDialogConsumer;
|
||||
import com.rusefi.output.JavaSensorsConsumer;
|
||||
import com.rusefi.output.OutputsSectionConsumer;
|
||||
import com.rusefi.output.*;
|
||||
import org.yaml.snakeyaml.Yaml;
|
||||
|
||||
import java.io.File;
|
||||
|
@ -78,7 +76,9 @@ public class UsagesReader {
|
|||
JavaSensorsConsumer javaSensorsConsumer = new JavaSensorsConsumer();
|
||||
String tsOutputsDestination = "console/binary/";
|
||||
|
||||
OutputsSectionConsumer outputsSections = new OutputsSectionConsumer(tsOutputsDestination + File.separator + "generated/output_channels.ini");
|
||||
ConfigurationConsumer outputsSections = new OutputsSectionConsumer(tsOutputsDestination + File.separator + "generated/output_channels.ini");
|
||||
|
||||
ConfigurationConsumer dataLogConsumer = new DataLogConsumer(tsOutputsDestination + File.separator + "generated/data_logs.ini");
|
||||
|
||||
EntryHandler handler = new EntryHandler() {
|
||||
|
||||
|
@ -111,7 +111,10 @@ public class UsagesReader {
|
|||
state.setDefinitionInputFile(folder + File.separator + name + ".txt");
|
||||
state.withC_Defines = withCDefines;
|
||||
|
||||
state.addDestination(javaSensorsConsumer, outputsSections);
|
||||
state.addDestination(javaSensorsConsumer,
|
||||
outputsSections,
|
||||
dataLogConsumer
|
||||
);
|
||||
FragmentDialogConsumer fragmentDialogConsumer = new FragmentDialogConsumer(name);
|
||||
state.addDestination(fragmentDialogConsumer);
|
||||
|
||||
|
|
Loading…
Reference in New Issue