I consulted a colleague who knows about pHp programming and we are not 100% if this is what you mean with dump, but this is what we added in class.ticket.php after line 3195 :
$ticket->onMessage($message, ($autorespond && $alerts), $reopen); //must be called b4 sending alerts to staff.
// debug alerts by c
$log = sprintf(__('debug message: %s'), $message);
$ost->logDebug(
sprintf( __('debug autorespond: %s'), $autorespond),
$log
);
$ost->logDebug(
sprintf( __('debug alerts: %s'), $alerts),
$log
);
Which caused these two entries in the log:
By the looks of it those variables seem to carry other data than just true or false.
Thanks again!