Handle having a null caller.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5368 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-09-11 23:35:09 +00:00
parent 1852e79477
commit 8114439855
@@ -743,7 +743,8 @@ public abstract class PeerManager
_injector.injectMembers(action);
action.invoke();
} catch (Exception e) {
log.warning("Failed to execute node action", "from", caller.who(),
log.warning("Failed to execute node action",
"from", (caller == null) ? "self" : caller.who(),
"action", action, "serializedSize", serializedAction.length, e);
}
}