#37 - logAction & logApp should truncate the details parameterClosed

Specifically for logApp, as we might pass overly long error messages from third party libs. We should rely on them being truncated and feel free to use logApp anywhere it is helpful.

Comments 1

[o_O] Marcus Commented on 2026-01-15 09:30:41
$category = substr($category, 0, 200);
$details = substr($details, 0, 1000);



----


$type = substr($type, 0, 200);
$action = substr($action, 0, 255);
$description = substr($description, 0, 1000);
Milestone:
No milestone set
Assigned To: Nobody
Created Date: 2025-01-13 19:28:32
Closed Date: 2026-01-15 09:30:41
Discussion Link: