Skip to content

Commit c56ef39

Browse files
committed
Remove unused log method.
1 parent 212adc0 commit c56ef39

File tree

1 file changed

+1
-6
lines changed
  • examples/powertools-examples-core-utilities/sam-bazel/src/main/java/helloworld

1 file changed

+1
-6
lines changed

examples/powertools-examples-core-utilities/sam-bazel/src/main/java/helloworld/App.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,6 @@ public APIGatewayProxyResponseEvent handleRequest(final APIGatewayProxyRequestEv
9797
}
9898
}
9999

100-
@Tracing
101-
private void log() {
102-
log.info("inside threaded logging for function");
103-
}
104-
105100
@Tracing(namespace = "getPageContents", captureMode = CaptureMode.DISABLED)
106101
private String getPageContents(String address) throws IOException {
107102
URL url = new URL(address);
@@ -110,4 +105,4 @@ private String getPageContents(String address) throws IOException {
110105
return br.lines().collect(Collectors.joining(System.lineSeparator()));
111106
}
112107
}
113-
}
108+
}

0 commit comments

Comments
 (0)