Skip to content

Commit

Permalink
chore(provider/gce): Instrument svg caching agent onDemand handlers. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jtk54 committed Apr 12, 2018
1 parent 11468e5 commit d82edae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class GoogleRegionalServerGroupCachingAgent extends AbstractGoogleCachingAgent i
evictions[SERVER_GROUPS.ns].add(serverGroupKey)
}

log.info("On demand cache refresh succeeded. Data: ${data}. Added ${serverGroup ? 1 : 0} items to the cache.")
log.info("On demand cache refresh succeeded. Data: ${data}. Added ${serverGroup ? 1 : 0} items to the cache. Evicted ${serverGroupKey}.")

return new OnDemandAgent.OnDemandResult(
sourceAgentType: getOnDemandAgentType(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class GoogleZonalServerGroupCachingAgent extends AbstractGoogleCachingAgent impl
evictions[SERVER_GROUPS.ns].addAll(identifiers)
}

log.info("On demand cache refresh succeeded. Data: ${data}. Added ${serverGroup ? 1 : 0} items to the cache.")
log.info("On demand cache refresh succeeded. Data: ${data}. Added ${serverGroup ? 1 : 0} items to the cache. Evicted ${identifiers}.")

return new OnDemandAgent.OnDemandResult(
sourceAgentType: getOnDemandAgentType(),
Expand Down

0 comments on commit d82edae

Please sign in to comment.