Skip to content

Commit

Permalink
Code review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerbenson committed May 21, 2019
1 parent 8e04526 commit 633e6a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/datadog/jmxfetch/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ public void init(boolean forceNewConnection) {

for (LinkedHashMap<String, Object> configInstance : configInstances) {
if (appConfig.isTargetDirectInstances() != isDirectInstance(configInstance)) {
log.debug("Skipping instance '{}'. targetDirectInstances={} jvm_direct={}",
log.info("Skipping instance '{}'. targetDirectInstances={} != jvm_direct={}",
name,
appConfig.isTargetDirectInstances(),
isDirectInstance(configInstance));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
public class TestTaskProcessor {
private static List<Instance> instances = null;

class TestSimpleTask extends InstanceTask<Boolean> {
TestSimpleTask(Instance instance) {
class TestSimpleTask extends InstanceTask<Boolean> {
TestSimpleTask(Instance instance) {
super(instance);
}

Expand Down

0 comments on commit 633e6a2

Please sign in to comment.