Skip to content

Commit

Permalink
Ooops forgot to normalize it to ms
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewQuijano committed Apr 26, 2024
1 parent 3ef174f commit a906f81
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/weka/finito/client.java
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,7 @@ public void run() {
Socket level_site = level_site_listener.accept();
long end_wait = System.nanoTime();
double wait_time = (double) (end_wait - start_wait);
wait_time = wait_time/1000000;
logger.info(String.format("[Client] Next Level-site just got features and just connected back for encrypted integer comparison in %f ms", wait_time));
evaluate_with_level_site(level_site, level);
}
Expand Down

0 comments on commit a906f81

Please sign in to comment.