diff --git a/src/Tasks/CreateQueuedJobTask.php b/src/Tasks/CreateQueuedJobTask.php
index fc6852fb..53743b9c 100644
--- a/src/Tasks/CreateQueuedJobTask.php
+++ b/src/Tasks/CreateQueuedJobTask.php
@@ -54,7 +54,7 @@ public function run($request)
$now = time();
if ($start >= $now) {
$friendlyStart = date('Y-m-d H:i:s', $start);
- echo "Job ".$request['name']. " queued to start at: ".$friendlyStart."";
+ echo 'Job queued to start at: ' . $friendlyStart . '';
singleton(QueuedJobService::class)->queueJob($job, $start);
} else {
echo "'start' parameter must be a date/time in the future, parseable with strtotime";