@@ -169,11 +169,11 @@ discard block |
||
169 | 169 | $cover = $doc->storeCoverFromBlob($data); |
170 | 170 | } |
171 | 171 | } catch (\ErrorException $e) { |
172 | - \Log::error('Failed to cache cover, got error: ' . $e->getMessage()); |
|
172 | + \Log::error('Failed to cache cover, got error: '.$e->getMessage()); |
|
173 | 173 | |
174 | 174 | return response()->json([ |
175 | 175 | 'result' => 'error', |
176 | - 'error' => 'Failed to store the cover. Please check that the URL points to a valid image file. Details: ' . $e->getMessage(), |
|
176 | + 'error' => 'Failed to store the cover. Please check that the URL points to a valid image file. Details: '.$e->getMessage(), |
|
177 | 177 | ]); |
178 | 178 | } |
179 | 179 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | ]; |
209 | 209 | $doc->save(); |
210 | 210 | |
211 | - \Log::info('Stored new description for ' . $doc->id); |
|
211 | + \Log::info('Stored new description for '.$doc->id); |
|
212 | 212 | |
213 | 213 | $se->indexById($doc->id); |
214 | 214 |