We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 326e845 commit 1e1a3b1Copy full SHA for 1e1a3b1
libs/javavi/src/main/java/kg/ash/javavi/Javavi.java
@@ -55,6 +55,7 @@ public static void main(String[] args) {
55
56
public static String makeResponse(String[] args) {
57
58
+ long ms = System.currentTimeMillis();
59
Action action = null;
60
boolean asyncRun = false;
61
for (int i = 0; i < args.length; i++) {
@@ -108,6 +109,7 @@ public static String makeResponse(String[] args) {
108
109
result = action.perform(args);
110
}
111
112
+ logger.debug("action time: {}ms", (System.currentTimeMillis() - ms));
113
return result;
114
115
0 commit comments