the browser-facing portion of osu!

Merge pull request #11160 from notbakaneko/feature/print-additional-display-name-queue-worker

Include more information in queue worker output

authored by Dean Herbert and committed by GitHub 6f2bdef0 8174c8e8

+5
app/Jobs/EsDocument.php
··· 33 33 ]; 34 34 } 35 35 36 + public function displayName() 37 + { 38 + return static::class." ({$this->modelMeta['class']} {$this->modelMeta['id']})"; 39 + } 40 + 36 41 /** 37 42 * Execute the job. 38 43 *
+5
app/Jobs/Notifications/BeatmapsetNotification.php
··· 28 28 $this->beatmapset = $beatmapset; 29 29 } 30 30 31 + public function displayName() 32 + { 33 + return static::class." (Beatmapset {$this->beatmapset->getKey()})"; 34 + } 35 + 31 36 public function getDetails(): array 32 37 { 33 38 return [
+5
app/Jobs/RegenerateBeatmapsetCover.php
··· 42 42 $this->sizesToRegenerate = $sizesToRegenerate; 43 43 } 44 44 45 + public function displayName() 46 + { 47 + return static::class." (Beatmapset {$this->beatmapset->getKey()})"; 48 + } 49 + 45 50 /** 46 51 * Execute the job. 47 52 *
+5
app/Jobs/RemoveBeatmapsetBestScores.php
··· 36 36 } 37 37 } 38 38 39 + public function displayName() 40 + { 41 + return static::class." (Beatmapset {$this->beatmapset->getKey()})"; 42 + } 43 + 39 44 /** 40 45 * Execute the job. 41 46 *
+5
app/Jobs/RemoveBeatmapsetSoloScores.php
··· 37 37 $this->maxScoreId = Score::max('id') ?? 0; 38 38 } 39 39 40 + public function displayName() 41 + { 42 + return static::class." (Beatmapset {$this->beatmapsetId})"; 43 + } 44 + 40 45 /** 41 46 * Execute the job. 42 47 *