started re-implementing route reservation
This commit is contained in:
@@ -88,7 +88,10 @@ public class ActionList extends Action implements Iterable<Action>{
|
||||
|
||||
for (Action action : actions) {
|
||||
LOG.debug("firing \"{}\"",action);
|
||||
if (!action.fire(context,cause)) return false;
|
||||
if (!action.fire(context,cause)) {
|
||||
LOG.warn("{} failed",action);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user