From 161f381f6bf3d045829adc8596635b0627b1dbd0 Mon Sep 17 00:00:00 2001 From: Stephen Salinas Date: Thu, 15 Sep 2016 14:24:51 -0400 Subject: [PATCH] don't need to log full deploy history, will be logged by mysql error --- .../data/history/SingularityDeployHistoryPersister.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SingularityService/src/main/java/com/hubspot/singularity/data/history/SingularityDeployHistoryPersister.java b/SingularityService/src/main/java/com/hubspot/singularity/data/history/SingularityDeployHistoryPersister.java index 69595b15e7..0da59206a1 100644 --- a/SingularityService/src/main/java/com/hubspot/singularity/data/history/SingularityDeployHistoryPersister.java +++ b/SingularityService/src/main/java/com/hubspot/singularity/data/history/SingularityDeployHistoryPersister.java @@ -112,7 +112,7 @@ protected boolean moveToHistory(SingularityDeployHistory deployHistory) { try { historyManager.saveDeployHistory(deployHistory); } catch (Throwable t) { - LOG.warn("Failed to persist deploy {} history ({})", SingularityDeployKey.fromDeployMarker(deployHistory.getDeployMarker()), deployHistory, t); + LOG.warn("Failed to persist deploy {}", SingularityDeployKey.fromDeployMarker(deployHistory.getDeployMarker()), t); return false; }