class ServicesClientLogLevel in Services Client 7.2
Define logging level for services client events.
Hierarchy
- class \ServicesClientLogLevel
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ServicesClientLogLevel:: |
constant | |||
ServicesClientLogLevel:: |
constant | |||
ServicesClientLogLevel:: |
public static | function | ||
ServicesClientLogLevel:: |
constant | |||
ServicesClientLogLevel:: |
constant |