insanehunter / XCode4_beginning_of_line

Xcode plugin to make HOME key jump to the first non-whitespace line of code
168 stars 21 forks source link

Plugin prints initialization text to stdout during xcodebuild runs #15

Closed kattrali closed 10 years ago

kattrali commented 10 years ago

When Xcode_beginning_of_line is installed and I run a command with xcodebuild, the plugins, initialization text is printed like so:

$ xcodebuild -workspace SampleProject.xcworkspace -scheme SampleProject test | xcpretty -ct
2014-04-10 10:13:05.913 xcodebuild[33843:1007] Xcode_beginning_of_line initializing...
2014-04-10 10:13:05.914 xcodebuild[33843:1007] Xcode_beginning_of_line complete!
...........................................................

Executed 59 tests, with 0 failures (0 unexpected) in 2.791 (2.811) seconds

This could probably best be avoid by restricting the output to debug mode or only printing when initialization fails.

supermarin commented 10 years ago

+1

insanehunter commented 10 years ago

Fixed in 5a4e512176

kattrali commented 10 years ago

Thank you!

hlung commented 10 years ago

Nice!