Skip to content

Commit 1d89de7

Browse files
committed
Fix message formatting
1 parent aa560f9 commit 1d89de7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ldbc/snb/datagen/hadoop/miscjob/HadoopMergeFriendshipFiles.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,6 @@ public void run(String outputFileName, List<String> friendshipFileNames) throws
154154
if (!job.waitForCompletion(true)) {
155155
throw new Exception();
156156
}
157-
System.out.println("... time to merge edges: " + (System.currentTimeMillis() - start) + " ms");
157+
System.out.println("... Time to merge edges: " + (System.currentTimeMillis() - start) + " ms");
158158
}
159159
}

0 commit comments

Comments
 (0)