published.setDatePublished(Calendar.getInstance().getTime());
log.error(e);
e.printStackTrace();
}
} else if (socialAccount.getAccounType().equals(SocialProvider.GOOGLE_BUZZ)) {
BuzzAPIOperations buzzInAPIOperations = new GoogleBuzzAPITemplate(socialAccount);
try {
log.debug("Publish on LinkedIn............>");
published = buzzInAPIOperations.updateStatus(tweetText);
published.setTextTweeted(tweetText);
published.setDatePublished(Calendar.getInstance().getTime());
published.setTweetId(RandomStringUtils.randomAscii(15));
log.debug("Publish on LinkedIn...... "+published);
} catch (Exception e) {