Is it possible in XCode or AppCode to filter the output of the console like its implemented in IntelliJ? Or at least in some way?
Asked
Active
Viewed 6,869 times
3 Answers
10
You can use GrepConsole plugin in AppCode which enables coloring and filtering out messages based on regexps

Meo
- 12,020
- 7
- 45
- 52

Stanislav Dombrovsky
- 754
- 4
- 8
3
As for XCode, there is a plugin, called MCLog. Basically, it just adds regex-based filter to your console, no history or filter configurations, but it's still much better, than nothing. You can install it using Alcatraz or directly from GitHub repo.

Alexander Semenov
- 1,513
- 13
- 20
-
1This may theoretically answer the question, but it would be best to include the essential parts of the answer here for future users, and provide the link for reference. [Link-dominated answers](//meta.stackexchange.com/questions/8231) can become invalid through [link rot](//en.wikipedia.org/wiki/Link_rot). – Mogsdad Feb 26 '16 at 17:01
-
3MCLog doesn't work in XCode 8.0+ "Works in Xcode 5.0 through 7.3. Unfortunately, Apple no longer supports Xcode plug-ins as of Xcode 8.0." – SimpleJ Mar 13 '18 at 23:02
2
This feature is now available in Xcode itself for those still looking! It's in the bottom right corner of the console (separate from ⌘F in the console). (Credit to Derek Yang for pointing this out to me!)

christianselig
- 405
- 4
- 17