Struct cpp_to_rust_common::log::LoggerSettings [] [src]

pub struct LoggerSettings {
    pub file_path: Option<PathBuf>,
    pub write_to_stderr: bool,
}

Specifies where the logging messages should be sent.

Fields

Write messages to specified file path. If None, logging to file is disabled.

Write messages to stderr.

Trait Implementations

impl Debug for LoggerSettings
[src]

Formats the value using the given formatter.

impl Default for LoggerSettings
[src]

Returns the "default value" for a type. Read more