Skip to content

Commit

Permalink
make initial startup less verbose.
Browse files Browse the repository at this point in the history
  • Loading branch information
willscott committed Apr 16, 2012
1 parent 1321bb8 commit e0f9f41
Showing 1 changed file with 4 additions and 0 deletions.
@@ -1,6 +1,7 @@
package edu.washington.cs.oneswarm.test.integration.oop;

import java.io.ByteArrayOutputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
Expand Down Expand Up @@ -107,6 +108,9 @@ public void run() {

String response = commands.toString();
ExperimentalHarnessManager.get().enqueue(response.split("\n"));
} catch (FileNotFoundException e) {
// Server isn't up.
logger.fine("Server isn't up, will try again in a minute.");
} catch (Exception e) {
e.printStackTrace();
}
Expand Down

0 comments on commit e0f9f41

Please sign in to comment.