Would be cool if we could pass `posInfos` to the logger to forward error lines. ```hx class Main { static function main() { write("Hey"); } static function write(a:String, ?infos:PosInfos) { Console.log('success', infos); // Line information is - Main.hx:3 } } ```