You are here

public static function ServicesClientLogLevel::getLevels in Services Client 7.2

1 call to ServicesClientLogLevel::getLevels()
EventHandler::configForm in include/event.inc
Configuration form.

File

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

Class

ServicesClientLogLevel
Define logging level for services client events.

Code

public static function getLevels() {
  return array(
    self::NONE => 'none',
    self::ERROR => 'errors',
    self::INFO => 'info',
    self::DEVEL => 'development',
  );
}