@@ -108,15 +108,13 @@ class Task {
108108 // / @brief Validates input data and task attributes before execution.
109109 // / @return True if validation is successful.
110110 virtual bool Validation () final {
111- std::cout << ppc::util::FuncName () << ' \n ' ;
112111 InternalOrderTest (ppc::util::FuncName ());
113112 return ValidationImpl ();
114113 }
115114
116115 // / @brief Performs preprocessing on the input data.
117116 // / @return True if preprocessing is successful.
118117 virtual bool PreProcessing () final {
119- std::cout << ppc::util::FuncName () << ' \n ' ;
120118 InternalOrderTest (ppc::util::FuncName ());
121119 if (state_of_testing_ == StateOfTesting::kFunc ) {
122120 InternalTimeTest (ppc::util::FuncName ());
@@ -127,15 +125,13 @@ class Task {
127125 // / @brief Executes the main logic of the task.
128126 // / @return True if execution is successful.
129127 virtual bool Run () final {
130- std::cout << ppc::util::FuncName () << ' \n ' ;
131128 InternalOrderTest (ppc::util::FuncName ());
132129 return RunImpl ();
133130 }
134131
135132 // / @brief Performs postprocessing on the output data.
136133 // / @return True if postprocessing is successful.
137134 virtual bool PostProcessing () final {
138- std::cout << ppc::util::FuncName () << ' \n ' ;
139135 InternalOrderTest (ppc::util::FuncName ());
140136 if (state_of_testing_ == StateOfTesting::kFunc ) {
141137 InternalTimeTest (ppc::util::FuncName ());
0 commit comments