View Full Version : In the debugger, what does "«string#0| ....." prefix mean ?
tspratt
12-22-2003, 04:10 PM
I am calling serialize() on a datapointer.
The debugger shows me the xml but prefixes it with this string.
antun
01-05-2004, 11:16 AM
This is a 2.0 feature that tells you that the string is longer than the maximum length of a text field. You can increase that by changing the printlength attribute of debug:
Debug.setAttribute( "printlength", 2000 );
... before you print out the value. That way, the string that you see won't get truncated (although sometimes you'll need to copy and paste it out of the debugger to see it clearly).
-Antun
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.