From f782ba7f07bbe441bd32d7026990a6eac7f38d79 Mon Sep 17 00:00:00 2001 From: Jamie Doornbos Date: Fri, 3 Oct 2008 23:03:23 +0000 Subject: [PATCH] Uncommenting log messages (these are very useful for the thane AVRG controller in msoy and can be configured without commenting them out) git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5414 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/util/SafeObjectManager.as | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/as/com/threerings/presents/util/SafeObjectManager.as b/src/as/com/threerings/presents/util/SafeObjectManager.as index 718f5b9d1..cd7cc3273 100644 --- a/src/as/com/threerings/presents/util/SafeObjectManager.as +++ b/src/as/com/threerings/presents/util/SafeObjectManager.as @@ -81,7 +81,7 @@ public class SafeObjectManager entry.availableFn = available; entry.failedFn = failed; sub.subscribe(_omgr); - // _log.info("Subscribing to " + sub); + _log.info("Subscribing to " + sub); _entries[oid] = entry; } @@ -98,7 +98,7 @@ public class SafeObjectManager return; } - // _log.info("Unsubscribing from " + entry.sub); + _log.info("Unsubscribing from " + entry.sub); if (entry.obj != null) { entry.obj.removeListener(_objectDeathListenerAdapter); } @@ -115,7 +115,7 @@ public class SafeObjectManager */ public function unsubscribeAll () :void { - // _log.info("Unsubscribing all objects"); + _log.info("Unsubscribing all objects"); // get the keys (integer ids of subscribed objects) var ids :Array = new Array(); @@ -153,7 +153,7 @@ public class SafeObjectManager _log.warning("Object " + obj.getOid() + " available without request?!"); } else { - // _log.info("Object " + obj.getOid() + " now available"); + _log.info("Object " + obj.getOid() + " now available"); entry.obj = obj; } @@ -205,7 +205,7 @@ public class SafeObjectManager entry.obj = null; } - // _log.info("Object " + oid + " destroyed"); + _log.info("Object " + oid + " destroyed"); } protected var _omgr :DObjectManager;