import { Service } from '../Core/index'; import { LogRequest } from './LogsTypes'; /** * Logs * * Log service * */ export declare class Logs extends Service { /** * Get deployment type associated to Logs service * @return {string} */ static readonly DEPLOYMENT_TYPE: string; /** * Get default deployment id associated to Logs service * @return {string} */ static readonly DEFAULT_DEPLOYMENT_ID: string; /** * Log API * * User API for logging. * This service is a façade for a system logging facility. Creating two log services has no effect. * @access public * */ /** * Creates a log entry * * Adds some server generated data and stores the entry into the sink defined by configuration. * @access public * */ log(body: LogRequest): void; }