I am writing a Cocoa application with Mono embedded. I want to run and see my debug output in Terminal. On the Cocoa side I am using NSLog()
, and on the Mono side I am using Debug.Write()
. I can see my debug output in xcode's console, but not in Terminal. I am tried:
$: open /path/build/Debug/MyProgram.app $: open /path/build/Debug/MyProgram.app > output $: open /path/build/Debug/MyProgram.app 2> output
on the shell and I am not seeing my output on the console or in 'ouput'.
Please help. Thanks.
PS. My ultimate goal is to write a vim plugin to manage, build, run, debug the xcode project. You can save me this hassle if you can get this vi input manager to work with xcode.