Fix IPC server

This commit is contained in:
Daniil Gentili 2020-09-18 20:44:30 +02:00
parent c643cd063a
commit 0cc1627220
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7
1 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,7 @@ trait LoggerLoop
*/
protected function startedLoop(): void
{
$this->started = true;
parent::startedLoop();
$this->logger->logger("Entered $this", Logger::ULTRA_VERBOSE);
}
@ -91,6 +92,7 @@ trait LoggerLoop
*/
protected function exitedLoop(): void
{
$this->started = false;
parent::exitedLoop();
$this->logger->logger("Exited $this", Logger::ULTRA_VERBOSE);
}