logDebug static method
Implementation
static void logDebug(String message) {
final size = message.length;
if (size > 200) {
var currentIndex = 0;
while (currentIndex * 200 < size) {
final start = currentIndex * 200;
var end = (currentIndex + 1) * 200;
if (end > size) {
end = size;
}
_logger.detail(message.substring(start, end));
currentIndex += 1;
}
}
_logger.detail(message);
}