mirror of
https://github.com/apache/jclouds.git
synced 2025-02-17 23:46:13 +00:00
Corrected a syntax error in a log format string
This commit is contained in:
parent
5bad701876
commit
6b4a995529
@ -61,7 +61,7 @@ public class KeyToStoredTweetStatus implements Function<String, StoredTweetStatu
|
|||||||
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
|
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
|
||||||
tweet = toStringAndClose(blob.getPayload().getInput());
|
tweet = toStringAndClose(blob.getPayload().getInput());
|
||||||
} catch (Exception e) {
|
} 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());
|
status = (e.getMessage());
|
||||||
tweet = "";
|
tweet = "";
|
||||||
from = "";
|
from = "";
|
||||||
|
@ -61,7 +61,7 @@ public class KeyToStoredTweetStatus implements Function<String, StoredTweetStatu
|
|||||||
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
|
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
|
||||||
tweet = toStringAndClose(blob.getPayload().getInput());
|
tweet = toStringAndClose(blob.getPayload().getInput());
|
||||||
} catch (Exception e) {
|
} 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());
|
status = (e.getMessage());
|
||||||
tweet = "";
|
tweet = "";
|
||||||
from = "";
|
from = "";
|
||||||
|
@ -61,7 +61,7 @@ public class KeyToStoredTweetStatus implements Function<String, StoredTweetStatu
|
|||||||
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
|
from = blob.getMetadata().getUserMetadata().get(TweetStoreConstants.SENDER_NAME);
|
||||||
tweet = toStringAndClose(blob.getPayload().getInput());
|
tweet = toStringAndClose(blob.getPayload().getInput());
|
||||||
} catch (Exception e) {
|
} 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());
|
status = (e.getMessage());
|
||||||
tweet = "";
|
tweet = "";
|
||||||
from = "";
|
from = "";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user