Skip to content

Commit

Permalink
Update LabelerServer.php
Browse files Browse the repository at this point in the history
  • Loading branch information
puklipo committed Dec 24, 2024
1 parent 8f88dcf commit cfedf62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Labeler/LabelerServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ public function start(): void
}
}
} catch (LabelerException $e) {
$connection->send($e->toBytes());
$bytes = $e->toBytes();
info('subscribeLabels error: '.$bytes);
$connection->send($bytes);
}
};

Expand Down

0 comments on commit cfedf62

Please sign in to comment.