Demoted some log messages to debug.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1387 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-05-24 05:58:55 +00:00
parent 86a9d88ed8
commit 16d4bfabca
2 changed files with 11 additions and 11 deletions
@@ -1,5 +1,5 @@
// //
// $Id: PlaceManager.java,v 1.29 2002/04/17 22:02:08 mdb Exp $ // $Id: PlaceManager.java,v 1.30 2002/05/24 05:58:55 mdb Exp $
package com.threerings.crowd.server; package com.threerings.crowd.server;
@@ -239,8 +239,8 @@ public class PlaceManager
*/ */
protected void bodyEntered (final int bodyOid) protected void bodyEntered (final int bodyOid)
{ {
Log.info("Body entered [ploid=" + _plobj.getOid() + Log.debug("Body entered [ploid=" + _plobj.getOid() +
", oid=" + bodyOid + "]."); ", oid=" + bodyOid + "].");
// let our delegates know what's up // let our delegates know what's up
applyToDelegates(new DelegateOp() { applyToDelegates(new DelegateOp() {
@@ -255,8 +255,8 @@ public class PlaceManager
*/ */
protected void bodyLeft (final int bodyOid) protected void bodyLeft (final int bodyOid)
{ {
Log.info("Body left [ploid=" + _plobj.getOid() + Log.debug("Body left [ploid=" + _plobj.getOid() +
", oid=" + bodyOid + "]."); ", oid=" + bodyOid + "].");
// if their occupant info hasn't been removed (which may be the // if their occupant info hasn't been removed (which may be the
// case if they logged off rather than left via a MoveTo request), // case if they logged off rather than left via a MoveTo request),
@@ -1,5 +1,5 @@
// //
// $Id: SceneRegistry.java,v 1.13 2001/12/16 05:39:16 mdb Exp $ // $Id: SceneRegistry.java,v 1.14 2002/05/24 05:58:55 mdb Exp $
package com.threerings.whirled.server; package com.threerings.whirled.server;
@@ -119,7 +119,7 @@ public class SceneRegistry
return; return;
} }
Log.info("Resolving scene [id=" + sceneId + "]."); Log.debug("Resolving scene [id=" + sceneId + "].");
// otherwise we've got to resolve the scene and call them back // otherwise we've got to resolve the scene and call them back
// later; we can manipulate the penders table with impunity here // later; we can manipulate the penders table with impunity here
@@ -142,7 +142,7 @@ public class SceneRegistry
// keywords... // keywords...
final int fsceneId = sceneId; final int fsceneId = sceneId;
Log.info("Invoking scene lookup [id=" + sceneId + "]."); Log.debug("Invoking scene lookup [id=" + sceneId + "].");
// then we queue up an execution unit that'll load the scene // then we queue up an execution unit that'll load the scene
// and initialize it and all that // and initialize it and all that
@@ -245,8 +245,8 @@ public class SceneRegistry
int sceneId = scmgr.getScene().getId(); int sceneId = scmgr.getScene().getId();
_scenemgrs.put(sceneId, scmgr); _scenemgrs.put(sceneId, scmgr);
Log.info("Registering scene manager [scid=" + sceneId + Log.debug("Registering scene manager [scid=" + sceneId +
", scmgr=" + scmgr + "]."); ", scmgr=" + scmgr + "].");
// now notify any penders // now notify any penders
ArrayList penders = (ArrayList)_penders.remove(sceneId); ArrayList penders = (ArrayList)_penders.remove(sceneId);
@@ -272,7 +272,7 @@ public class SceneRegistry
Log.warning("Requested to unmap unmapped scene manager " + Log.warning("Requested to unmap unmapped scene manager " +
"[scmgr=" + scmgr + "]."); "[scmgr=" + scmgr + "].");
} else { } else {
Log.info("Unmapped scene manager " + scmgr + "."); Log.debug("Unmapped scene manager " + scmgr + ".");
} }
} }