thedude
Well-known member
- Affected version
- 1.5.21
We were hunting down an issue with one of our add-ons that wasn't appearing in the XF server error log. Eventually we found that the message being passed to
was a bit longer than the 64k TEXT field limit, so the error was not saved in the database.
We've resorted to substr'ing our potentially large exception messages with a 65535 byte limit. If this could be done at XenForo_Error::logException or somewhere up the chain, we wouldn't have to worry about exception messages possibly not being logged.
Code:
throw new XenForo_Exception()
We've resorted to substr'ing our potentially large exception messages with a 65535 byte limit. If this could be done at XenForo_Error::logException or somewhere up the chain, we wouldn't have to worry about exception messages possibly not being logged.