You are here

function mongodb_dblog_module_implements_alter in MongoDB 8

Implements hook_module_implements_alter().

File

mongodb_dblog/mongodb_dblog.module, line 11
MongoDB dblog module.

Code

function mongodb_dblog_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'cron') {
    unset($implementations['dblog']);
  }
}