Now I was use NSLog() for debugging inside IDE, Is it possible to styling Log in Xcode ?
Example
- Coloring Log
- XML, JSON Output in Log console Styling
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the XcodeColors xcode plugin to colorize log statements in the Xcode console:
https://github.com/robbiehanson/XcodeColors
It’s very easy to use in combination with CocoaLumberjack:
https://github.com/robbiehanson/CocoaLumberjack/wiki/XcodeColors
For example, with Lumberjack, one line of code allows you to set the color for all error messages. You could make them show up in red so they’re easily distinguishable from other debug logging.