You are here

private static function OpenGraphMetaDrupalLayer::err in Open Graph meta tags 6

Same name and namespace in other branches
  1. 7 opengraph_meta.common.inc \OpenGraphMetaDrupalLayer::err()

Log a watchdog error related to the Drupal compatibility layer. @static

Parameters

$msg:

Return value

void

3 calls to OpenGraphMetaDrupalLayer::err()
OpenGraphMetaDrupalLayer::get_node_types in ./opengraph_meta.common.inc
Get all available node content types.
OpenGraphMetaDrupalLayer::render_meta_tag in ./opengraph_meta.common.inc
Render given META tag to HTML output.
OpenGraphMetaDrupalLayer::theme_selector_image in ./opengraph_meta.common.inc
Get rendered IMG tag for the OGMT node image selector.

File

./opengraph_meta.common.inc, line 655

Class

OpenGraphMetaDrupalLayer
Drupal compatibility layer.

Code

private static function err($msg) {
  watchdog('opengraph_meta', '%class: %msg', array(
    '%class' => __CLASS__,
    '%msg' => $msg,
  ), WATCHDOG_ERROR);
}