Struct flexi_logger::writers::SyslogWriter[][src]

pub struct SyslogWriter { /* fields omitted */ }
Expand description

An experimental configurable LogWriter implementation that writes log messages to the syslog (see RFC 5424).

Only available with optional crate feature syslog_writer.

For using the SyslogWriter, you need to know how the syslog is managed on your system,
how you can access it and with which protocol you can write to it, so that you can choose a variant of the SyslogConnector that fits to your environment.

See the writers for guidance how to use additional log writers.

Implementations

Returns a configured boxed instance.

Parameters

facility: An value representing a valid syslog facility value according to RFC 5424.

determine_severity: (optional) A function that maps the rust log levels to the syslog severities. If None is given, a trivial default mapping is used, which should be good enough in most cases.

message_id: The value being used as syslog’s MSGID, which should identify the type of message. The value itself is a string without further semantics. It is intended for filtering messages on a relay or collector.

syslog: A SyslogConnector.

Errors

std::io::Error

Trait Implementations

Writes out a log line. Read more

Flushes any buffered records. Read more

Provides the maximum log level that is to be written.

Sets the format function. Read more

Cleanup open resources, if necessary.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more