use of limelight.model.api.PropProxy in project limelight by slagyr.
the class Debug method log.
public void log(Panel panel, String message) {
if (panel instanceof PropPanel) {
PropPanel prop = (PropPanel) panel;
PropProxy propProxy = prop.getProxy();
if (propProxy != null && "sandbox".equals(prop.getName()))
System.err.println(message);
}
}