From 40cbabe20cd19c714525690238bfc007968ece56 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 12 Jul 2002 03:49:02 +0000 Subject: [PATCH] Report when the connection fails. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1570 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/client/Communicator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/presents/client/Communicator.java b/src/java/com/threerings/presents/client/Communicator.java index 8421e19f3..89ed7a137 100644 --- a/src/java/com/threerings/presents/client/Communicator.java +++ b/src/java/com/threerings/presents/client/Communicator.java @@ -1,5 +1,5 @@ // -// $Id: Communicator.java,v 1.19 2002/05/27 01:37:07 mdb Exp $ +// $Id: Communicator.java,v 1.20 2002/07/12 03:49:02 mdb Exp $ package com.threerings.presents.client; @@ -165,7 +165,7 @@ public class Communicator return; } - Log.debug("Connection failed: " + ioe); + Log.info("Connection failed: " + ioe); // let the client know that things went south _client.notifyObservers(Client.CLIENT_CONNECTION_FAILED, ioe);