Skip to content

Commit 2c2b93e

Browse files
authored
Minor: Plugin: AI Helper: Fix error message language
1 parent fe45648 commit 2c2b93e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/ai_helper/AiHelperPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public function deepSeekGetCompletionText(string $prompt, string $toolName)
179179
$response = curl_exec($ch);
180180

181181
if ($response === false) {
182-
error_log('Error en cURL: ' . curl_error($ch));
182+
error_log('cURL error: ' . curl_error($ch));
183183
curl_close($ch);
184184
return ['error' => true, 'message' => 'Request to AI provider failed.'];
185185
}

0 commit comments

Comments
 (0)