You are here

public function RulesDebugLog::clearLogs in Rules 8.3

Clears the logs entries from the storage.

File

src/Logger/RulesDebugLog.php, line 96

Class

RulesDebugLog
Logger that stores Rules debug logs with the session service.

Namespace

Drupal\rules\Logger

Code

public function clearLogs() {
  $this->session
    ->remove('rules_debug_log');
}