Newer
Older
exporter / _strace.as
package
{
	public function _strace(str)
	{
		_trace(str);
		if (GraphicExport.wrapper != null)
		{
			GraphicExport.wrapper.writeUTFBytes(str + "\n");
			GraphicExport.wrapper.flush();
		}
	}
}