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