//Crusty old DTM way(s) - log
_satellite.notify("This is like a console.log");
_satellite.notify("This is like a console.log",0);
_satellite.notify("This is like a console.log",1);
_satellite.notify("This is like a console.log",2);
_satellite.logger.log("This is like a console.log");
//Crusty old DTM way - info
_satellite.notify("This is like a console.info",3);
_satellite.logger.info("This is like a console.info");
//Crusty old DTM way - warn
_satellite.notify("This is like a console.warn",4);
_satellite.logger.warn("This is like a console.warn");
//Crusty old DTM way - error
_satellite.notify("This is like a console.error",5);
_satellite.logger.error("This is like a console.error");
//No way to do this in DTM - debug
//Shiny new Launch way - debug
_satellite.logger.debug("This is like a console.debug");