From 3ba4a640e5edde8dd8f6c6313f70249d72267a26 Mon Sep 17 00:00:00 2001 From: mdb Date: Thu, 21 Jul 2005 21:32:16 +0000 Subject: [PATCH] Let the caller log a stack trace if such a thing is appropriate. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1679 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../src/java/com/samskivert/util/ServiceWaiter.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/util/ServiceWaiter.java b/projects/samskivert/src/java/com/samskivert/util/ServiceWaiter.java index 8d6c5729..3ebf98c6 100644 --- a/projects/samskivert/src/java/com/samskivert/util/ServiceWaiter.java +++ b/projects/samskivert/src/java/com/samskivert/util/ServiceWaiter.java @@ -130,10 +130,8 @@ public class ServiceWaiter } // if we get here without some sort of response, then - // we've timed out and we should freak out + // we've timed out if (_success == 0) { - Log.warning("Service waiter timed out."); - Thread.dumpStack(); throw new TimeoutException(); }