Removes timing from thread object
[mkjsf-moved-to-github.git] / src / main / java / com / indexdata / mkjsf / pazpar2 / CommandThread.java
index 10a0adc..78c5652 100644 (file)
@@ -20,10 +20,8 @@ public class CommandThread extends Thread {
    * Executes the specified command using the specified Pazpar2 client\r
    */\r
   public void run() {    \r
-    long start = System.currentTimeMillis();\r
+    logger.debug(command.getCommandName() + " executing asynchronously");\r
     commandResponse = client.executeCommand(command);\r
-    long end = System.currentTimeMillis();\r
-    logger.debug("Executed " + command.getCommandName() + " in " + (end-start) + " ms." );\r
   }\r
   \r
   /**\r