isPrintFullString property
Whether to print full long strings by splitting into chunks When true (default), long strings are automatically split into ~800 character chunks to ensure complete output without truncation, preserving ANSI colors across all chunks When false, uses standard debugPrint which may truncate very long strings
Defaults to true for complete log visibility Set to false if you prefer standard debugPrint behavior or don't need long string support
Performance note: When enabled, adds minimal overhead for ANSI color preservation
Implementation
static bool isPrintFullString = true;