summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Wolff <bawolff+wn@gmail.com>2024-03-02 00:33:58 -0800
committerBrian Wolff <bawolff+wn@gmail.com>2024-03-02 00:34:29 -0800
commitde2e65358337a9765af995d945714b5ca7999ef5 (patch)
tree58db7b17aa482bbf256f7c4d645022dc3c5337b9
parentae041457be2e2e53b1f962ba8e61f2a8ff4a51f1 (diff)
Fix typo in log message
Change-Id: Ic688cca85b42bed2706d9579022429ea94fb1818
-rw-r--r--includes/api/ApiUpload.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/api/ApiUpload.php b/includes/api/ApiUpload.php
index 6a1a8de1e529..bec858d41f9b 100644
--- a/includes/api/ApiUpload.php
+++ b/includes/api/ApiUpload.php
@@ -973,7 +973,7 @@ class ApiUpload extends ApiBase {
$this->log->info( "Upload stashing of {filename} failed for {user} because {error}",
[
'user' => $this->getUser()->getName(),
- 'status' => get_class( $e ),
+ 'error' => get_class( $e ),
'filename' => $this->mParams['filename'] ?? '-',
'filekey' => $this->mParams['filekey'] ?? '-'
]