I seem to have come across what may be a bug, unless this is the way it is intended to work.
Quite accidently while testing a merlin with the numeric1.2.1 hud oxp installed I happened to eject. After I had a look at the log as it was over 300Kb long. I had this message repeatedly many times per second.
20:02:39.875 [script.javaScript.exception.ooliteDefinedError]: ***** JavaScript exception (<unidentified script>): Error: System.infoForSystem: Invalid arguments (0, undefined) -- expected galaxy ID and system ID.
20:02:39.875 [script.javaScript.exception.ooliteDefinedError]: ../AddOns/(new)NUMERIC HUDv1.2.1.oxp/Scripts/numerichudv12.js, line 1027.
I managed to trace it down and can make it happen 100% by ejecting(something I don't normally do but was using it as a shortcut to get to the main station while play testing.)
The offending bit of script is in the numericv12.js in numerichudv1.2.1.oxp. It is in a function to determine the information for the guage "fuel required" and everything works without a hitch 100%...until you eject then it causes an error message only(no ctd)100% of the time.
let s = system.info.systemID;
let t = player.ship.targetSystem;
this.numericgaugevalue = System.infoForSystem(galaxyNumber, s).distanceToSystem(System.infoForSystem(galaxyNumber, t));
1)When you eject are the scripts supposed to be suspended?
2)Why is system.ID undefined when you eject? Is it because player.ship.targetSystem is undefined when you eject? And why isn't galaxy ID undefined as well?
3)Does using frame callbacks prevent the functions called from being suspended while ejecting?
4)Should I remove frame callbacks when the player ejects? I already have remove frame callbacks when docked.
What is happening in the script is clear but why is it happening? By design? What is the best workaround for this?

I doubt there is another script that tries to get system.info.systemID or player.ship.targetSystem at 30 times per second while the player ejects. Frame callbacks are definately pushing the game to limits it has never seen before.
