@@ -184,11 +184,11 @@ discard block |
||
184 | 184 | $cover = $cover->toArray(); |
185 | 185 | } |
186 | 186 | } catch (\ErrorException $e) { |
187 | - \Log::error('Failed to cache cover, got error: ' . $e->getMessage()); |
|
187 | + \Log::error('Failed to cache cover, got error: '.$e->getMessage()); |
|
188 | 188 | |
189 | 189 | return response()->json([ |
190 | 190 | 'result' => 'error', |
191 | - 'error' => 'Failed to store the cover. Please check that the URL points to a valid image file. Details: ' . $e->getMessage(), |
|
191 | + 'error' => 'Failed to store the cover. Please check that the URL points to a valid image file. Details: '.$e->getMessage(), |
|
192 | 192 | ]); |
193 | 193 | } |
194 | 194 | |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | ]; |
224 | 224 | $doc->save(); |
225 | 225 | |
226 | - \Log::info('Stored new description for ' . $doc->id); |
|
226 | + \Log::info('Stored new description for '.$doc->id); |
|
227 | 227 | |
228 | 228 | $se->indexById($doc->id); |
229 | 229 |