Skip to content
This repository was archived by the owner on Dec 27, 2023. It is now read-only.

Commit d3f552f

Browse files
committed
Add debug messages in KernelCore
1 parent 1e52d7e commit d3f552f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/KernelCore.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ private function initSockets(array $connUris)
8989

9090
$this->shellSocket = $reactZmqContext->getSocket(\ZMQ::SOCKET_ROUTER);
9191
$this->shellSocket->bind($connUris['shell']);
92+
93+
$this->logger->debug('Initialized sockets', ['processId' => getmypid()]);
9294
}
9395

9496
private function registerHandlers()
@@ -114,5 +116,7 @@ private function registerHandlers()
114116
$this->logger->withName('ShellMessagesHandler')
115117
)
116118
);
119+
120+
$this->logger->debug('Registered handlers', ['processId' => getmypid()]);
117121
}
118122
}

0 commit comments

Comments
 (0)