Show message type in packet:info
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 27s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m31s
Create Docker Image / Final Docker Image Manifest (push) Successful in 8s

This commit is contained in:
Deon George 2024-11-19 21:56:35 +09:30
parent 733f4621a1
commit 016c1fb1b0

View File

@ -68,7 +68,8 @@ class PacketInfo extends Command
echo "\n"; echo "\n";
try { try {
$this->warn(sprintf('- Date : %s (%s)',$msg->date,$msg->date->tz->toOffsetName())); $this->warn(sprintf('- TYPE : %s',get_class($msg)));
$this->warn(sprintf(' - Date : %s (%s)',$msg->date,$msg->date->tz->toOffsetName()));
$this->warn(sprintf(' - Errors : %s',$msg->errors->count() ? 'YES' : 'No')); $this->warn(sprintf(' - Errors : %s',$msg->errors->count() ? 'YES' : 'No'));
$this->warn(sprintf(' - Flags : %s',$msg->flags()->keys()->join(', '))); $this->warn(sprintf(' - Flags : %s',$msg->flags()->keys()->join(', ')));
$this->warn(sprintf(' - Cost : %d',$msg->cost)); $this->warn(sprintf(' - Cost : %d',$msg->cost));