Fix for #1662. Corrected the spelling in the logs.

This commit is contained in:
Gireesh Puthumana
2021-09-26 17:33:36 -04:00
parent 41b263dc1f
commit 8b170cbbd2
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ $http
;
$http->on('WorkerStart', function($serv, $workerId) {
Console::success('Worker '.++$workerId.' started succefully');
Console::success('Worker '.++$workerId.' started successfully');
});
$http->on('BeforeReload', function($serv, $workerId) {
@@ -43,7 +43,7 @@ $http->on('AfterReload', function($serv, $workerId) {
$http->on('start', function (Server $http) use ($payloadSize) {
Console::success('Server started succefully (max payload is '.number_format($payloadSize).' bytes)');
Console::success('Server started successfully (max payload is '.number_format($payloadSize).' bytes)');
Console::info("Master pid {$http->master_pid}, manager pid {$http->manager_pid}");