Remove some init debug logging

This commit is contained in:
Deon George 2024-09-17 23:34:16 +10:00
parent 10a1aceeb3
commit 6e2a1e8670

View File

@ -376,8 +376,6 @@ abstract class Catalog extends Model
public function init(): void public function init(): void
{ {
foreach ($this->init as $item) { foreach ($this->init as $item) {
Log::debug(sprintf('Init item [%s]',$item));
switch ($item) { switch ($item) {
case 'creation_date': case 'creation_date':
$this->created = $this->getObjectOriginal('creation_date'); $this->created = $this->getObjectOriginal('creation_date');
@ -430,8 +428,6 @@ abstract class Catalog extends Model
} }
$this->custom_init(); $this->custom_init();
Log::debug('Init result',['dirty'=>$this->getDirty()]);
} }
/** /**