I am getting only 1022 characters of my String to display in the debugging console of Xcode6. The actual length is around 2500 characters.
Is there a way to display all character in the console or do i have to write them in a file.
i have tried print
in the console but that displays only 1023 characters.
First i tried with println(sqlstatement)
, that did not work. Second, as mentioned above, i used print sqlstatement
in the debug console itself. Oh and debugger is lldb.
Regards Adarkas