Perhaps you can create your own class that will send you your messages, which then divide them into several messages. as:
MyLogger.d("LOG_TAG",veryLongMessage);
This class then simply could check the size of the message and split it if necessary, and then pass them to Log.d ().
source share