sod-log
[sod::Service] logging implementations via log.
Service Impls
- [
LogDebugService] logs [Debug] input at a configured log level to [log::log], returning the input as output. - [
LogDisplayService] logs [Display] input at a configured log level to [log::log], returning the input as output.
Use Case
These [Service] impls are most useful for logging an event as it passes through a service chain.
Example
use Service;
use LogDisplayService;
let logging_service = info;
logging_service.process.unwrap;