You are here

class ServicesClientLogLevel in Services Client 7.2

Define logging level for services client events.

Hierarchy

Expanded class hierarchy of ServicesClientLogLevel

File

include/plugin.inc, line 124
Base plugin definitions. All other plugins should be extended from this set of plugins.

View source
class ServicesClientLogLevel {
  const NONE = 0;
  const ERROR = 16;
  const INFO = 32;
  const DEVEL = 64;
  public static function getLevels() {
    return array(
      self::NONE => 'none',
      self::ERROR => 'errors',
      self::INFO => 'info',
      self::DEVEL => 'development',
    );
  }

}

Members