Is there a way to log the received POST request data before the data validation stage implemented via Restler?
Use the onValidate event, it fires just before validation starts
//in your index.php after $r = new Restler()
$r->onValidate(function() use ($r){
Logger::log($r->getRequestData());
}