statsig-rust 0.19.2

Statsig Rust SDK for usage in multi-user server environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{console_capture::console_log_line_levels::StatsigLogLineLevel, StatsigUser};

#[derive(Clone, Default)]
pub struct ConsoleCaptureOptions {
    pub enabled: bool,
    pub log_levels: Option<Vec<StatsigLogLineLevel>>,
    pub user: Option<StatsigUser>,
    pub max_keys: Option<u64>,
    pub max_depth: Option<u64>,
    pub max_length: Option<u64>,
}