1 /** 2 * The type of redux action which stores the log collector that will be 3 * submitting the logs to CallStats. 4 * 5 * { 6 * type: SET_LOG_COLLECTOR, 7 * logCollector: Logger.LogCollector 8 * } 9 */ 10 export const SET_LOG_COLLECTOR = 'SET_LOG_COLLECTOR'; 11 12 /** 13 * The type of redux action which sets the configuration of the feature 14 * base/logging. 15 * 16 * { 17 * type: SET_LOGGING_CONFIG, 18 * config: Object 19 * } 20 */ 21 export const SET_LOGGING_CONFIG = 'SET_LOGGING_CONFIG';