You are here

class RealisticDummyContentDebugLog in Realistic Dummy Content 7

This log class can be used whenever you need a RealisticDummyContentLog

Hierarchy

Expanded class hierarchy of RealisticDummyContentDebugLog

1 string reference to 'RealisticDummyContentDebugLog'
realistic_dummy_content_DatabaseTestCase::testRecipe in api/tests/realistic_dummy_content_api.db.test

File

api/realistic_dummy_content_api.module, line 27
API code allowing other modules to generate realistic dummy content. See the Realistic Dummy Content module for an example of how to use.

View source
class RealisticDummyContentDebugLog implements RealisticDummyContentLog {
  public function log($text, $vars = array()) {
    debug(t($text, $vars));
  }
  public function error($text, $vars = array()) {
    debug(t($text, $vars));
  }

}

Members