Skip to content

Commit

Permalink
Debug run command definitions
Browse files Browse the repository at this point in the history
The run command wouldn't output the definition list... now it does.
  • Loading branch information
mcmonkey4eva committed Sep 23, 2014
1 parent 96f7f99 commit d381104
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -151,7 +151,8 @@ public void execute(ScriptEntry scriptEntry) throws CommandExecutionException {
+ (scriptEntry.hasObject("path") ? scriptEntry.getElement("path").debug() : "")
+ (scriptEntry.hasObject("local") ? scriptEntry.getElement("local").debug() : "")
+ (scriptEntry.hasObject("delay") ? scriptEntry.getdObject("delay").debug() : "")
+ (scriptEntry.hasObject("id") ? scriptEntry.getdObject("id").debug() : ""));
+ (scriptEntry.hasObject("id") ? scriptEntry.getdObject("id").debug() : "")
+ (scriptEntry.hasObject("definitions") ? scriptEntry.getdObject("definitions").debug(): ""));

// Get the script
dScript script = scriptEntry.getdObject("script");
Expand Down

0 comments on commit d381104

Please sign in to comment.