making debugging easier by dumping the error message when a command execution fails.

This commit is contained in:
chanial%noos.fr 2003-04-21 19:05:50 +00:00
parent 326658929f
commit c2191b39e0

View File

@ -68,6 +68,7 @@ function goDoCommand(command)
}
catch (e) {
dump("An error occurred executing the "+command+" command\n");
dump(e+"\n")
}
}