|
64 | 64 | #include "Framework/DataTakingContext.h" |
65 | 65 | #include "Framework/CommonServices.h" |
66 | 66 | #include "Framework/DefaultsHelpers.h" |
67 | | -#include "ControlServiceHelpers.h" |
68 | 67 | #include "ProcessingPoliciesHelpers.h" |
69 | 68 | #include "DriverServerContext.h" |
70 | 69 | #include "HTTPParser.h" |
@@ -848,9 +847,7 @@ void processChildrenOutput(uv_loop_t* loop, |
848 | 847 | // TODO: have multiple display modes |
849 | 848 | // TODO: graphical view of the processing? |
850 | 849 | assert(infos.size() == controls.size()); |
851 | | - std::match_results<std::string_view::const_iterator> match; |
852 | 850 | ParsedMetricMatch metricMatch; |
853 | | - ParsedConfigMatch configMatch; |
854 | 851 |
|
855 | 852 | int processed = 0; |
856 | 853 | for (size_t di = 0, de = infos.size(); di < de; ++di) { |
@@ -881,11 +878,7 @@ void processChildrenOutput(uv_loop_t* loop, |
881 | 878 | // in the GUI. |
882 | 879 | // Then we check if it is part of our Poor man control system |
883 | 880 | // if yes, we execute the associated command. |
884 | | - if (logLevel == LogParsingHelpers::LogLevel::Info && ControlServiceHelpers::parseControl(token, match)) { |
885 | | - throw runtime_error("stdout is not supported anymore as a driver backend. Please use ws://"); |
886 | | - } else if (logLevel == LogParsingHelpers::LogLevel::Info && DeviceConfigHelper::parseConfig(token.substr(16), configMatch)) { |
887 | | - throw runtime_error("stdout is not supported anymore as a driver backend. Please use ws://"); |
888 | | - } else if (!control.quiet && (token.find(control.logFilter) != std::string::npos) && logLevel >= info.logLevel) { |
| 881 | + if (!control.quiet && (token.find(control.logFilter) != std::string::npos) && logLevel >= info.logLevel) { |
889 | 882 | assert(info.historyPos >= 0); |
890 | 883 | assert(info.historyPos < info.history.size()); |
891 | 884 | info.history[info.historyPos] = token; |
|
0 commit comments