From b6a8c2be585c2fbbf1ddb644173cb3585230c0f0 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 16 May 2005 22:08:55 +0000 Subject: [PATCH] Use a more sensible log name; removed unused import. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3556 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/jme/JmeApp.java | 2 -- src/java/com/threerings/jme/Log.java | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/java/com/threerings/jme/JmeApp.java b/src/java/com/threerings/jme/JmeApp.java index a3fed2671..d5db06ed3 100644 --- a/src/java/com/threerings/jme/JmeApp.java +++ b/src/java/com/threerings/jme/JmeApp.java @@ -48,8 +48,6 @@ import com.jme.light.PointLight; import com.jme.math.Vector3f; import com.jme.util.Timer; -import com.threerings.presents.client.Client; - import com.threerings.jme.input.GodViewHandler; import com.threerings.jme.input.HardwareMouse; diff --git a/src/java/com/threerings/jme/Log.java b/src/java/com/threerings/jme/Log.java index 526767a41..da1cee03f 100644 --- a/src/java/com/threerings/jme/Log.java +++ b/src/java/com/threerings/jme/Log.java @@ -28,7 +28,7 @@ package com.threerings.jme; public class Log { public static com.samskivert.util.Log log = - new com.samskivert.util.Log("jme"); + new com.samskivert.util.Log("narya.jme"); /** Convenience function. */ public static void debug (String message)