Including size in debugging messages for items being sent

This commit is contained in:
Deon George 2024-06-27 08:36:14 +10:00
parent d8c68bcaa2
commit e2321f3acd

@ -229,7 +229,7 @@ class Send extends Base
if ((($this->index=$this->list->search(function($item) { return $item->complete === FALSE; })) !== FALSE) if ((($this->index=$this->list->search(function($item) { return $item->complete === FALSE; })) !== FALSE)
&& $this->sending->open()) && $this->sending->open())
{ {
Log::info(sprintf('%s:- Sending item [%d] (%s)',self::LOGKEY,$this->index,$this->sending->nameas)); Log::info(sprintf('%s:- Sending item #%d (%s) with size [%d]',self::LOGKEY,$this->index,$this->sending->nameas,$this->sending->size));
$this->pos = 0; $this->pos = 0;
$this->start = time(); $this->start = time();