Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Console output filtering in xcode or appcode

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?

like image 683
Martin Mlostek Avatar asked Jan 20 '16 11:01

Martin Mlostek


2 Answers

You can use GrepConsole plugin in AppCode which enables coloring and filtering out messages based on regexps

like image 188
Stanislav Dombrovsky Avatar answered Sep 29 '22 19:09

Stanislav Dombrovsky


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.

See, how it looks on original screenshots:
Image taken from original GitHub repository

like image 34
Alexander Semenov Avatar answered Sep 29 '22 20:09

Alexander Semenov