Rejigger component rendering order a bit so that individual components can have their own

priority overrides, since unfortunately, not all male/familiars are created equal.


git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@693 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Dave Hoover
2008-11-10 23:02:00 +00:00
parent 6294232dce
commit c4af53338c
4 changed files with 59 additions and 36 deletions
@@ -242,8 +242,8 @@ public class BundledComponentRepository
// look up the component class information
ComponentClass clazz = _classes.get(cclass);
if (clazz == null) {
log.warning("Non-existent component class [class=" + cclass + ", name=" + cname +
", id=" + componentId + "].");
log.warning("Non-existent component class",
"class", cclass, "name", cname, "id", componentId);
return;
}
@@ -262,7 +262,7 @@ public class BundledComponentRepository
if (!comps.contains(component)) {
comps.add(component);
} else {
log.info("Requested to register the same component twice? [comp=" + component + "].");
log.info("Requested to register the same component twice?", "comp", component);
}
}