}
private String getProperty(BlogEntry blogEntry, String property) {
Blog blog = blogEntry.getBlog();
String blogName = blog.getName();
PluginProperties pluginProperties = blog.getPluginProperties();
String result = pluginProperties.getProperty("twitter." + blogName + "." + property);
if(result == null) {
result = pluginProperties.getProperty("twitter." + property);
if(result == null) {
log.error("Twitter credentials (" + property + ") not found. Please configure twitter." + property + " in order to post to twitter");
} else {
log.debug("found twitter credentials in twitter." + property );
}