Appcelerator Logging in 1.6.2
So, console logging doesn't seem to work in Titanium Appcelerator 1.6.2. Trying to fix this problem I have come across a bunch of articles telling me to create a "logger.py" in the neather regions of my computer. Well, I did that, and guess what? Logging still didn't work.
Finally came across this article which fixes the issue simply. I love simple.
This is what you do:
cd ~/Library/Application\ Support/iPhone\ Simulator/
mv 4.3.2 4.3.2.BAK
ln -s 4.3.2 4.3
Now your logging will work again! Here's what's happening. Basically after cding to your iPhone Simulator directory you back a back up of your 4.3.2 folder and then create a symlink from 4.3.2 to your 4.3 directory. Like magic, console logging works again!