Skip to content

Commit

Permalink
fix : fix log message (#5583)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Oct 9, 2021
1 parent 981a639 commit 3e813c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/VCard/ImportVCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ private function importPhoto(Contact $contact, VCard $entry): void
]);
} catch (ValidationException $e) {
// wrong data
Log::debug(__CLASS__.' importPhoto: ERROR when UploadPhoto: '.implode(', ', $e->errors()).', PHOTO='.$array['data'], [$e, $array, 'contact_id' => $contact->id]);
Log::debug(__CLASS__.' importPhoto: ERROR when UploadPhoto: '.implode(', ', $e->validator->errors()->all()).', PHOTO='.$array['data'], [$e, $array, 'contact_id' => $contact->id]);
}
}
}
Expand Down

0 comments on commit 3e813c2

Please sign in to comment.