Trace without file name and line number in Haxe

Viewed 1447

Haxe has trace(), which can be used on all targets to print contents.

trace("aa"); // Main.hx:89: aa

How do I print just the contents, without the file name and line number?

1 Answers
Related