We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f06cfb8 + 78a3f71 commit 8646587Copy full SHA for 8646587
src/Binlog/Collector/Application/BinlogCollectorApplication.php
@@ -163,8 +163,10 @@ private function executeChildProcess(
163
$this->logger->info($e->getMessage());
164
exit();
165
} catch (\Exception $exception) {
166
- $this->logger->info("child_index({$child_index} : exception({$exception->getMessage()})");
167
- $this->binlog_configuration->exception_handler->triggerException($exception);
+ if ($exception->getMessage() !== 'Success') {
+ $this->logger->info("child_index({$child_index} : exception({$exception->getMessage()})");
168
+ $this->binlog_configuration->exception_handler->triggerException($exception);
169
+ }
170
171
}
172
0 commit comments