Switch to new logging API.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@510 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Michael Bayne
2008-05-27 22:55:10 +00:00
parent b521b4bfbf
commit e00b4ddd6b
108 changed files with 497 additions and 605 deletions
@@ -39,9 +39,10 @@ import com.threerings.util.Name;
import com.threerings.presents.client.Client;
import com.threerings.presents.net.UsernamePasswordCreds;
import com.threerings.jme.Log;
import com.threerings.jme.JmeApp;
import static com.threerings.jme.Log.log;
/**
* The main point of entry for the Jabber client application. It creates
* and initializes the myriad components of the client and sets all the
@@ -100,7 +101,7 @@ public class JabberApp extends JmeApp
Client client = _client.getContext().getClient();
// pass them on to the client
Log.info("Using [server=" + server + ".");
log.info("Using [server=" + server + ".");
client.setServer(server, Client.DEFAULT_SERVER_PORTS);
// configure the client with some credentials and logon
@@ -123,7 +124,7 @@ public class JabberApp extends JmeApp
if (client.isLoggedOn()) {
client.logoff(false);
}
Log.info("Stopping.");
log.info("Stopping.");
super.stop();
}