Corrected a syntax error in a log format string

This commit is contained in:
Andrew Phillips 2011-08-01 23:37:37 -04:00
parent 5bad701876
commit 6b4a995529
3 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ public class KeyToStoredTweetStatus implements Function<String, StoredTweetStatu
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
tweet = toStringAndClose(blob.getPayload().getInput());
} catch (Exception e) {
logger.error(e, "Error listing container %s//%s/$s", service, container, id);
logger.error(e, "Error listing container %s//%s/%s", service, container, id);
status = (e.getMessage());
tweet = "";
from = "";

View File

@ -61,7 +61,7 @@ public class KeyToStoredTweetStatus implements Function<String, StoredTweetStatu
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
tweet = toStringAndClose(blob.getPayload().getInput());
} catch (Exception e) {
logger.error(e, "Error listing container %s//%s/$s", service, container, id);
logger.error(e, "Error listing container %s//%s/%s", service, container, id);
status = (e.getMessage());
tweet = "";
from = "";

View File

@ -61,7 +61,7 @@ public class KeyToStoredTweetStatus implements Function<String, StoredTweetStatu
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
tweet = toStringAndClose(blob.getPayload().getInput());
} catch (Exception e) {
logger.error(e, "Error listing container %s//%s/$s", service, container, id);
logger.error(e, "Error listing container %s//%s/%s", service, container, id);
status = (e.getMessage());
tweet = "";
from = "";