Can't find OSX Standalone log file

I’m building a Mac OSX standalone build. Unity creates the gamename.app file but when I run it, it runs fine but I need to see the
debug.log output. I’ve looked everywhere but there doesn’t seem to be any. Player.log doesn’t have is nor does anything show up in console. Anyideas? I’ve set to developer build and ticked the use player log build option.

Log must be here /Users/nicloay/Library/Logs/Unity/Player.log, but i think you saw this page

So, anyway on mac os, it’s quite easy to find which file used by application. so try to do folowing steps:

  1. Open terminal

  2. find process id of your application

    ps -ae|grep APP_NAME //case sensitive

  3. check which file used by this application, and has “log” in file name

  4. List item

    lsof -p 36597|grep log //36597 is PID which you get in previous command

Here is a screenshot with output.

[16860-screen+shot+2013-10-22+at+11.55.49+am.png|16860]

and don’t forget that there is a nice log viewer in MacOS Console
[16862-screen+shot+2013-10-22+at+11.59.00+am.png|16862]

/Users/USER-NAME/Library/Logs/COMPANY-NAME/PRODUCT-NAME/Player.log