Which of the following code snippets will you use to destroy a log if the variable $logger contains the log record?
$logger=null;
remove($logger);
$logger->null;
delete($logger);
Submit