Skip to content

Commit

Permalink
Do not log stacktrace for RemoteNodeMemory warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Oct 8, 2015
1 parent eb1af77 commit 3878d67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void onSuccess(@Nullable JsonResponse<MemoryInfo> result)
@Override
public void onFailure(Throwable t)
{
log.warn(t, "Error fetching memory info from %s", memoryInfoUri);
log.warn("Error fetching memory info from %s: %s", memoryInfoUri, t.getMessage());
lastUpdateNanos.set(System.nanoTime());
future.compareAndSet(responseFuture, null);
}
Expand Down

0 comments on commit 3878d67

Please sign in to comment.