relayrl_framework 0.5.0-alpha.1

A distributed, system-oriented multi-agent reinforcement learning framework.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! RelayRL Logging Sinks
//!
//! This module contains various logging sinks (outputs) used by the RelayRL
//! framework for directing logs to different destinations.

pub mod console;
pub mod file;

// Re-export commonly used types and functions
pub use console::{
    create_colored_console_appender, create_console_appender, create_json_console_appender,
};

pub use file::{create_file_appender, create_json_file_appender, create_size_rotating_appender};