pub struct MainLoggerConfig {
pub filter: Option<String>,
pub to_stdout: Option<bool>,
pub to_file: Option<bool>,
pub color: Option<bool>,
}
Expand description
Runtime logger config.
Fields§
§filter: Option<String>
Sets log levels for different modules.
null
means keeping the current option unchanged.
§Examples
Set the log level to info for all modules
info
Set the log level to debug for listed modules and info for other modules.
info,ckb-rpc=debug,ckb-sync=debug,ckb-relay=debug,ckb-tx-pool=debug,ckb-network=debug
to_stdout: Option<bool>
Whether printing the logs to the process stdout.
null
means keeping the current option unchanged.
to_file: Option<bool>
Whether appending the logs to the log file.
null
means keeping the current option unchanged.
color: Option<bool>
Whether using color when printing the logs to the process stdout.
null
means keeping the current option unchanged.
Trait Implementations§
Source§impl Clone for MainLoggerConfig
impl Clone for MainLoggerConfig
Source§fn clone(&self) -> MainLoggerConfig
fn clone(&self) -> MainLoggerConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MainLoggerConfig
impl Debug for MainLoggerConfig
Source§impl Default for MainLoggerConfig
impl Default for MainLoggerConfig
Source§fn default() -> MainLoggerConfig
fn default() -> MainLoggerConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MainLoggerConfig
impl<'de> Deserialize<'de> for MainLoggerConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for MainLoggerConfig
impl JsonSchema for MainLoggerConfig
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreAuto Trait Implementations§
impl Freeze for MainLoggerConfig
impl RefUnwindSafe for MainLoggerConfig
impl Send for MainLoggerConfig
impl Sync for MainLoggerConfig
impl Unpin for MainLoggerConfig
impl UnwindSafe for MainLoggerConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)