the browser-facing portion of osu!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

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