Skip to content

Commit 27e8d4f

Browse files
ihmc-rosiecalvertdw
authored andcommitted
Fix compile error.
1 parent 41f5644 commit 27e8d4f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/us/ihmc/robotDataLogger/example/ExampleSVOLogger.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ public static void main(String[] args)
4646
/*
4747
Connect and start logging the SVO
4848
*/
49-
String svoFile = System.getProperty("user.home") + "/Desktop/test" + UUID.randomUUID().toString().substring(0, 5) + ".svo2";
50-
SVO_LOGGER.start(svoFile, ADDRESS, PORT);
49+
String path = System.getProperty("user.home") + "/Desktop/test" + UUID.randomUUID().toString().substring(0, 5);
50+
String svoFile = path + ".svo2";
51+
String datFile = path + ".dat";
52+
SVO_LOGGER.start(svoFile, datFile, System::nanoTime, ADDRESS, PORT);
5153

5254
/*
5355
Do nothing forever, everything else runs in other threads

0 commit comments

Comments
 (0)