You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: experimental/aws-lambda-java-profiler/extension/src/main/java/com/amazonaws/services/lambda/extension/PreMain.java
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -99,10 +99,7 @@ public static void stopProfiler(String fileNameSuffix) {
99
99
fileNameSuffix
100
100
);
101
101
Logger.debug(
102
-
"stopping the profiler with filename = " +
103
-
fileName +
104
-
" with command = " +
105
-
PROFILER_STOP_COMMAND
102
+
"stopping the profiler with filename = " + fileName
106
103
);
107
104
AsyncProfiler.getInstance().execute(
108
105
String.format(PROFILER_STOP_COMMAND, fileName)
@@ -125,7 +122,7 @@ public static void startProfiler() {
0 commit comments