#logging #pattern #service

sod-log

Service Oriented Design - Log Integrations

6 releases

0.3.4 Jun 26, 2024
0.3.3 Jun 26, 2024
0.3.1 Oct 15, 2023
0.2.3 Jul 25, 2023
0.2.2 Apr 20, 2023

#229 in #pattern

Download history

236 downloads per month

MIT/Apache

66KB
1.5K SLoC

sod::Service logging implementations via log.

Service Impls

Use Case

These Service impls are most useful for logging an event as it passes through a service chain.

Example

use sod::Service;
use sod_log::LogDisplayService;

let logging_service = LogDisplayService::info("my event: ");
logging_service.process("hello world!").unwrap();

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 sod::Service;
use sod_log::LogDisplayService;

let logging_service = LogDisplayService::info("my event: ");
logging_service.process("hello world!").unwrap();

Dependencies

~135–530KB
~12K SLoC