1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
//! Support for ANSI terminal colors via the colored crate.
//!
//! To enable support for colors, add the `"colored"` feature in your
//! `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! fern = { version = "0.6", features = ["colored"] }
//! ```
//!
//! ---
//!
//! Colors are mainly supported via coloring the log level itself, but it's
//! also possible to color each entire log line based off of the log level.
//!
//! First, here's an example which colors the log levels themselves ("INFO" /
//! "WARN" text will have color, but won't color the rest of the line).
//! [`ColoredLevelConfig`] lets us configure the colors per-level, but also has
//! sane defaults.
//!
//! ```
//! use fern::colors::{Color, ColoredLevelConfig};
//!
//! let mut colors = ColoredLevelConfig::new()
//! // use builder methods
//! .info(Color::Green);
//! // or access raw fields
//! colors.warn = Color::Magenta;
//! ```
//!
//! It can then be used within any regular fern formatting closure:
//!
//! ```
//! # let colors = fern::colors::ColoredLevelConfig::new();
//! fern::Dispatch::new()
//! // ...
//! .format(move |out, message, record| {
//! out.finish(format_args!(
//! "[{}] {}",
//! // just use 'colors.color(..)' instead of the level
//! // itself to insert ANSI colors.
//! colors.color(record.level()),
//! message,
//! ))
//! })
//! # .into_log();
//! ```
//!
//! ---
//!
//! Coloring levels is nice, but the alternative is good too. For an example of an
//! application coloring each entire log line with the right color, see
//! [examples/pretty-colored.rs][ex].
//!
//! [`ColoredLevelConfig`]: struct.ColoredLevelConfig.html
//! [ex]: https://github.com/daboross/fern/blob/fern-0.6.2/examples/pretty-colored.rs
use std::fmt;
pub use colored::Color;
use log::Level;
/// Extension crate allowing the use of `.colored` on Levels.
trait ColoredLogLevel {
/// Colors this log level with the given color.
fn colored(&self, color: Color) -> WithFgColor<Level>;
}
/// Opaque structure which represents some text data and a color to display it
/// with.
///
/// This implements [`fmt::Display`] to displaying the inner text (usually a
/// log level) with ANSI color markers before to set the color and after to
/// reset the color.
///
/// `WithFgColor` instances can be created and displayed without any allocation.
// this is necessary in order to avoid using colored::ColorString, which has a
// Display implementation involving many allocations, and would involve two
// more string allocations even to create it.
//
// [`fmt::Display`]: https://doc.rust-lang.org/std/fmt/trait.Display.html
pub struct WithFgColor<T>
where
T: fmt::Display,
{
text: T,
color: Color,
}
impl<T> fmt::Display for WithFgColor<T>
where
T: fmt::Display,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "\x1B[{}m", self.color.to_fg_str())?;
fmt::Display::fmt(&self.text, f)?;
write!(f, "\x1B[0m")?;
Ok(())
}
}
/// Configuration specifying colors a log level can be colored as.
///
/// Example usage setting custom 'info' and 'debug' colors:
///
/// ```
/// use fern::colors::{Color, ColoredLevelConfig};
///
/// let colors = ColoredLevelConfig::new()
/// .info(Color::Green)
/// .debug(Color::Magenta);
///
/// fern::Dispatch::new()
/// .format(move |out, message, record| {
/// out.finish(format_args!(
/// "[{}] {}",
/// colors.color(record.level()),
/// message
/// ))
/// })
/// .chain(std::io::stdout())
/// # /*
/// .apply()?;
/// # */
/// # .into_log();
/// ```
#[derive(Copy, Clone)]
#[must_use = "builder methods take config by value and thus must be reassigned to variable"]
pub struct ColoredLevelConfig {
/// The color to color logs with the [`Error`] level.
///
/// [`Error`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Error
pub error: Color,
/// The color to color logs with the [`Warn`] level.
///
/// [`Warn`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Warn
pub warn: Color,
/// The color to color logs with the [`Info`] level.
///
/// [`Info`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Info
pub info: Color,
/// The color to color logs with the [`Debug`] level.
///
/// [`Debug`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Debug
pub debug: Color,
/// The color to color logs with the [`Trace`] level.
///
/// [`Trace`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Trace
pub trace: Color,
}
impl ColoredLevelConfig {
/// Creates a new ColoredLevelConfig with the default colors.
///
/// This matches the behavior of [`ColoredLevelConfig::default`].
///
/// [`ColoredLevelConfig::default`]: #method.default
#[inline]
pub fn new() -> Self {
#[cfg(windows)]
{
let _ = colored::control::set_virtual_terminal(true);
}
Self::default()
}
/// Overrides the [`Error`] level color with the given color.
///
/// The default color is [`Color::Red`].
///
/// [`Error`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Error
/// [`Color::Red`]: https://docs.rs/colored/1/colored/enum.Color.html#variant.Red
pub fn error(mut self, error: Color) -> Self {
self.error = error;
self
}
/// Overrides the [`Warn`] level color with the given color.
///
/// The default color is [`Color::Yellow`].
///
/// [`Warn`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Warn
/// [`Color::Yellow`]: https://docs.rs/colored/1/colored/enum.Color.html#variant.Yellow
pub fn warn(mut self, warn: Color) -> Self {
self.warn = warn;
self
}
/// Overrides the [`Info`] level color with the given color.
///
/// The default color is [`Color::White`].
///
/// [`Info`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Info
/// [`Color::White`]: https://docs.rs/colored/1/colored/enum.Color.html#variant.White
pub fn info(mut self, info: Color) -> Self {
self.info = info;
self
}
/// Overrides the [`Debug`] level color with the given color.
///
/// The default color is [`Color::White`].
///
/// [`Debug`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Debug
/// [`Color::White`]: https://docs.rs/colored/1/colored/enum.Color.html#variant.White
pub fn debug(mut self, debug: Color) -> Self {
self.debug = debug;
self
}
/// Overrides the [`Trace`] level color with the given color.
///
/// The default color is [`Color::White`].
///
/// [`Trace`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Trace
/// [`Color::White`]: https://docs.rs/colored/1/colored/enum.Color.html#variant.White
pub fn trace(mut self, trace: Color) -> Self {
self.trace = trace;
self
}
/// Colors the given log level with the color in this configuration
/// corresponding to it's level.
///
/// The structure returned is opaque, but will print the Level surrounded
/// by ANSI color codes when displayed. This will work correctly for
/// UNIX terminals, but due to a lack of support from the [`colored`]
/// crate, this will not function in Windows.
///
/// [`colored`]: https://github.com/mackwic/colored
pub fn color(&self, level: Level) -> WithFgColor<Level> {
level.colored(self.get_color(&level))
}
/// Retrieves the color that a log level should be colored as.
pub fn get_color(&self, level: &Level) -> Color {
match *level {
Level::Error => self.error,
Level::Warn => self.warn,
Level::Info => self.info,
Level::Debug => self.debug,
Level::Trace => self.trace,
}
}
}
impl Default for ColoredLevelConfig {
/// Retrieves the default configuration. This has:
///
/// - [`Error`] as [`Color::Red`]
/// - [`Warn`] as [`Color::Yellow`]
/// - [`Info`] as [`Color::White`]
/// - [`Debug`] as [`Color::White`]
/// - [`Trace`] as [`Color::White`]
///
/// [`Error`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Error
/// [`Warn`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Warn
/// [`Info`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Info
/// [`Debug`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Debug
/// [`Trace`]: https://docs.rs/log/0.4/log/enum.Level.html#variant.Trace
/// [`Color::White`]: https://docs.rs/colored/1/colored/enum.Color.html#variant.White
/// [`Color::Yellow`]: https://docs.rs/colored/1/colored/enum.Color.html#variant.Yellow
/// [`Color::Red`]: https://docs.rs/colored/1/colored/enum.Color.html#variant.Red
fn default() -> Self {
ColoredLevelConfig {
error: Color::Red,
warn: Color::Yellow,
debug: Color::White,
info: Color::White,
trace: Color::White,
}
}
}
impl ColoredLogLevel for Level {
fn colored(&self, color: Color) -> WithFgColor<Level> {
WithFgColor { text: *self, color }
}
}
#[cfg(test)]
#[cfg(not(windows))]
mod test {
use colored::{Color::*, Colorize};
use super::WithFgColor;
#[test]
fn fg_color_matches_colored_behavior() {
for &color in &[
Black,
Red,
Green,
Yellow,
Blue,
Magenta,
Cyan,
White,
BrightBlack,
BrightRed,
BrightGreen,
BrightYellow,
BrightBlue,
BrightMagenta,
BrightCyan,
BrightWhite,
] {
colored::control::SHOULD_COLORIZE.set_override(true);
assert_eq!(
format!("{}", "test".color(color)),
format!(
"{}",
WithFgColor {
text: "test",
color,
}
)
);
}
}
#[test]
fn fg_color_respects_formatting_flags() {
let s = format!(
"{:^8}",
WithFgColor {
text: "test",
color: Yellow,
}
);
assert!(s.contains(" test "));
assert!(!s.contains(" test "));
assert!(!s.contains(" test "));
}
}