You are here

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

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

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

Parameters

$msg:

Return value

void

File

./opengraph_meta.common.inc, line 570

Class

OpenGraphMetaDrupalLayer
Drupal compatibility layer.

Code

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