File tree 1 file changed +5
-5
lines changed
core/src/main/java/org/elasticsearch/transport
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -114,14 +114,14 @@ protected boolean removeEldestEntry(Map.Entry eldest) {
114
114
private final Logger tracerLog ;
115
115
116
116
volatile String [] tracerLogInclude ;
117
- volatile String [] tracelLogExclude ;
117
+ volatile String [] tracerLogExclude ;
118
118
119
119
/** if set will call requests sent to this id to shortcut and executed locally */
120
120
volatile DiscoveryNode localNode = null ;
121
121
122
122
/**
123
123
* Build the service.
124
- *
124
+ *
125
125
* @param clusterSettings if non null the the {@linkplain TransportService} will register with the {@link ClusterSettings} for settings
126
126
* updates for {@link #TRACE_LOG_EXCLUDE_SETTING} and {@link #TRACE_LOG_INCLUDE_SETTING}.
127
127
*/
@@ -174,7 +174,7 @@ void setTracerLogInclude(List<String> tracerLogInclude) {
174
174
}
175
175
176
176
void setTracerLogExclude (List <String > tracelLogExclude ) {
177
- this .tracelLogExclude = tracelLogExclude .toArray (Strings .EMPTY_ARRAY );
177
+ this .tracerLogExclude = tracelLogExclude .toArray (Strings .EMPTY_ARRAY );
178
178
}
179
179
180
180
@ Override
@@ -589,8 +589,8 @@ private boolean shouldTraceAction(String action) {
589
589
return false ;
590
590
}
591
591
}
592
- if (tracelLogExclude .length > 0 ) {
593
- return !Regex .simpleMatch (tracelLogExclude , action );
592
+ if (tracerLogExclude .length > 0 ) {
593
+ return !Regex .simpleMatch (tracerLogExclude , action );
594
594
}
595
595
return true ;
596
596
}
You can’t perform that action at this time.
0 commit comments