Issue 230: Misformated __android_log_print
Status:  Fixed
Owner: ----
Closed:  Mar 2013
Reported by lumporta...@gmail.com, Feb 28, 2013
What steps will reproduce the problem?
1. compile for Android

What is the expected output?
compilation graceful 

What do you see instead?
Error with Debug.cpp on line 432

Please provide any additional information below.
Apparently the original function is missing one parameter

original:
__android_log_print(ANDROID_LOG_ERROR, "... %d functions missing ...\n", mExceptionStackOverflow);

ficed version:
__android_log_print(ANDROID_LOG_ERROR, "HXCPP", "... %d functions missing ...\n", mExceptionStackOverflow);

note "HXCPP" added as second parameter



Mar 1, 2013
Project Member #1 gameh...@gmail.com

I should have used "DBGLOG" - I put it there but did not get around to converting things over.  I have put your fix in for now - thanks.
Status: Fixed
Apr 23, 2013
#2 blunt7...@gmail.com
Still not fixed.