diff --git a/app/Services/NoteService.php b/app/Services/NoteService.php index b1d8f50c..a1f45ad7 100644 --- a/app/Services/NoteService.php +++ b/app/Services/NoteService.php @@ -3,7 +3,7 @@ declare(strict_types=1); namespace App\Services; -use Log; + use App\{Media, Note, Place}; use App\Jobs\{SendWebMentions, SyndicateToFacebook, SyndicateToTwitter}; @@ -17,7 +17,7 @@ class NoteService */ public function createNote(array $data): Note { - Log::info($data); + //check the input if (array_key_exists('content', $data) === false) { throw new \Exception('No content defined'); //we can’t fudge the data diff --git a/changelog.md b/changelog.md index d9e2b364..ab9ddb36 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.5.14 (2017-06-11) + - Remove some Log statements in-appropriate for porduction + ## Version 0.5.13 (2017-06-11) - Fix issues around using ownyourgram.com