@@ -62,7 +62,7 @@ public void testRerouteIsCalledWhenAHotSpotIsDetected() {
6262 }
6363
6464 @ TestLogging (
65- value = "org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor:DEBUG " ,
65+ value = "org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor:TRACE " ,
6666 reason = "ensure we're skipping reroute for the right reason"
6767 )
6868 public void testRerouteIsNotCalledWhenStateIsNotRecovered () {
@@ -81,7 +81,7 @@ public void testRerouteIsNotCalledWhenStateIsNotRecovered() {
8181 new MockLog .SeenEventExpectation (
8282 "don't reroute due to global block" ,
8383 WriteLoadConstraintMonitor .class .getCanonicalName (),
84- Level .DEBUG ,
84+ Level .TRACE ,
8585 "skipping monitor as the cluster state is not recovered yet"
8686 )
8787 );
@@ -93,7 +93,7 @@ public void testRerouteIsNotCalledWhenStateIsNotRecovered() {
9393 }
9494
9595 @ TestLogging (
96- value = "org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor:DEBUG " ,
96+ value = "org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor:TRACE " ,
9797 reason = "ensure we're skipping reroute for the right reason"
9898 )
9999 public void testRerouteIsNotCalledWhenDeciderIsNotEnabled () {
@@ -117,7 +117,7 @@ public void testRerouteIsNotCalledWhenDeciderIsNotEnabled() {
117117 new MockLog .SeenEventExpectation (
118118 "don't reroute due to decider being disabled" ,
119119 WriteLoadConstraintMonitor .class .getCanonicalName (),
120- Level .DEBUG ,
120+ Level .TRACE ,
121121 "skipping monitor because the write load decider is not fully enabled"
122122 )
123123 );
@@ -129,7 +129,7 @@ public void testRerouteIsNotCalledWhenDeciderIsNotEnabled() {
129129 }
130130
131131 @ TestLogging (
132- value = "org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor:DEBUG " ,
132+ value = "org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor:TRACE " ,
133133 reason = "ensure we're skipping reroute for the right reason"
134134 )
135135 public void testRerouteIsNotCalledWhenNoNodesAreHotSpotting () {
@@ -146,7 +146,7 @@ public void testRerouteIsNotCalledWhenNoNodesAreHotSpotting() {
146146 new MockLog .SeenEventExpectation (
147147 "don't reroute due to no nodes hot-spotting" ,
148148 WriteLoadConstraintMonitor .class .getCanonicalName (),
149- Level .DEBUG ,
149+ Level .TRACE ,
150150 "No hot-spotting nodes detected"
151151 )
152152 );
@@ -196,7 +196,7 @@ public void testRerouteIsNotCalledAgainBeforeMinimumIntervalHasPassed() {
196196 "don't reroute due to reroute being called recently" ,
197197 WriteLoadConstraintMonitor .class .getCanonicalName (),
198198 Level .DEBUG ,
199- "Not calling reroute because we called reroute recently and there are no new hot spots"
199+ "Not calling reroute because we called reroute * ago and there are no new hot spots"
200200 )
201201 );
202202 writeLoadConstraintMonitor .onNewInfo (testState .clusterInfo );
@@ -213,7 +213,7 @@ public void testRerouteIsNotCalledAgainBeforeMinimumIntervalHasPassed() {
213213 }
214214
215215 @ TestLogging (
216- value = "org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor:DEBUG " ,
216+ value = "org.elasticsearch.cluster.routing.allocation.WriteLoadConstraintMonitor:TRACE " ,
217217 reason = "ensure we're skipping reroute for the right reason"
218218 )
219219 public void testRerouteIsCalledBeforeMinimumIntervalHasPassedIfNewNodesBecomeHotSpotted () {
0 commit comments