feat(logging): migrate Education container to education channel

This commit is contained in:
F4ilji
2026-07-05 23:30:30 +05:00
parent cd9b682994
commit 6bc1b3e921
4 changed files with 24 additions and 24 deletions
@@ -42,7 +42,7 @@ class CreateEducationalProgram implements ShouldQueue
if ($program !== null) {
array_push($programs, $program);
} else {
Log::error("Не удалось получить данные о программе с UUID: $uuid");
Log::channel('education')->error('Failed to get program data by UUID', ['uuid' => $uuid]);
}
}
@@ -63,7 +63,7 @@ class CreateEducationalProgram implements ShouldQueue
]
);
} else {
Log::error("Не удалось найти направление обучения с UUID: {$program->napr_uuid}");
Log::channel('education')->error('Direction study not found', ['uuid' => $program->napr_uuid]);
}
}
}