Skip to content

Commit

Permalink
Fix log time units (#8943)
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Eriksson committed Sep 4, 2020
1 parent 5499dbb commit 9c860d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private DevModeHandler(DeploymentConfiguration config, int runningPort,
commandToString(npmFolder.getAbsolutePath(), command));
}

long start = System.currentTimeMillis();
long start = System.nanoTime();
processBuilder.command(command);
try {
webpackProcess = processBuilder
Expand Down

0 comments on commit 9c860d2

Please sign in to comment.