We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6577edf commit 7af57c4Copy full SHA for 7af57c4
app/Jobs/UpdateSite.php
@@ -157,7 +157,12 @@ public function handle(): void
157
if ($afterUpdateCode !== $this->preUpdateCode) {
158
throw new UpdateException(
159
"afterUpdate",
160
- "Status code has changed after update for site: " . $this->site->id
+ sprintf(
161
+ "Status code has changed from %s to %s after update for site: %s",
162
+ $this->preUpdateCode,
163
+ $afterUpdateCode,
164
+ $this->site->id
165
+ )
166
);
167
}
168
0 commit comments