print long string in xcode 6 debugging console
I found an answer thanks to your comment @nms. The command line for lldb is
setting set target.max-string-summary-length 10000
with 10000 being the number of characters that are printed.
I haven`t found a nicer way to set this setting for lldb, other than typing it every time i debug, than to set a breakpoint in AppDelegate to auto continue and adding the above command to it.