useFastPrint property
Use fast print mode for better performance in multi-console logging When true, uses print() instead of debugPrint() for faster output When false, uses debugPrint() which is safer but slower
Defaults to true in debug mode (kDebugMode) for faster feedback, and false in release mode for safer logging
Note: debugPrint throttles output (~800 chars at a time) to prevent log loss, while print is faster but may lose logs if output is too frequent
Implementation
static bool useFastPrint = false;