APFeedBack
APFeedBack copied to clipboard
Developer Log File in Swift project.
I noticed the "feedbacklog.txt" file was not containing any of my logs, utilizing print() in a swift project. I changed Line #70 in DeviceInfo.m from
`freopen([logPath cStringUsingEncoding:NSASCIIStringEncoding],"a+",stderr);`
to
`freopen([logPath cStringUsingEncoding:NSASCIIStringEncoding],"a+",stdout);`
Swift does not print to stderr, instead use stdout
Ok, thank you look at it later.