matobodo / DiscordWebhookLogging

Simple Discord webhook logger
MIT License
8 stars 0 forks source link

Color formatting is not working for lines longer than 1000 character #4

Open matobodo opened 7 months ago

matobodo commented 7 months ago

when logging lines longer than 1000 character discord is not using syntax highlighting for these log messages

logger.error('1000' + '.' * 992)
logger.error('1001' + '.' * 993)

image

tested working solution is to split longer lines into max length of 996 characters