public function submitVideoByID($id)
 {
     $videoData = new videoData();
     $postTitle = $videoData->getTitleByID($id);
     $postLink = 'https://youtube.com/watch?v=' . $id;
     $this->reddit->createStory($postTitle, $postLink, $this->subreddit);
     $this->writeToLog($postTitle, $postLink);
 }