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 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
//! A logger that prints all messages with a simple, readable output format.
//!
//! Optional features include timestamps, colored output and logging to stderr.
//!
//! ```rust
//! simple_logger::SimpleLogger::new().env().init().unwrap();
//!
//! log::warn!("This is an example message.");
//! ```
//!
//! Some shortcuts are available for common use cases.
//!
//! Just initialize logging without any configuration:
//!
//! ```rust
//! simple_logger::init().unwrap();
//! ```
//!
//! Set the log level from the `RUST_LOG` environment variable:
//!
//! ```rust
//! simple_logger::init_with_env().unwrap();
//! ```
//!
//! Hardcode a default log level:
//!
//! ```rust
//! simple_logger::init_with_level(log::Level::Warn).unwrap();
//! ```
#![cfg_attr(feature = "nightly", feature(thread_id_value))]
#[cfg(feature = "colored")]
use colored::*;
use log::{Level, LevelFilter, Log, Metadata, Record, SetLoggerError};
use std::{collections::HashMap, str::FromStr};
#[cfg(feature = "timestamps")]
use time::{format_description::FormatItem, OffsetDateTime, UtcOffset};
#[cfg(feature = "timestamps")]
const TIMESTAMP_FORMAT_OFFSET: &[FormatItem] = time::macros::format_description!(
"[year]-[month]-[day]T[hour]:[minute]:[second].[subsecond digits:3][offset_hour sign:mandatory]:[offset_minute]"
);
#[cfg(feature = "timestamps")]
const TIMESTAMP_FORMAT_UTC: &[FormatItem] =
time::macros::format_description!("[year]-[month]-[day]T[hour]:[minute]:[second].[subsecond digits:3]Z");
#[cfg(feature = "timestamps")]
#[derive(PartialEq)]
enum Timestamps {
None,
Local,
Utc,
UtcOffset(UtcOffset),
}
/// Implements [`Log`] and a set of simple builder methods for configuration.
///
/// Use the various "builder" methods on this struct to configure the logger,
/// then call [`init`] to configure the [`log`] crate.
pub struct SimpleLogger {
/// The default logging level
default_level: LevelFilter,
/// The specific logging level for each module
///
/// This is used to override the default value for some specific modules.
/// After initialization, the vector is sorted so that the first (prefix) match
/// directly gives us the desired log level.
module_levels: Vec<(String, LevelFilter)>,
/// Whether to include thread names (and IDs) or not
///
/// This field is only available if the `threads` feature is enabled.
#[cfg(feature = "threads")]
threads: bool,
/// Control how timestamps are displayed.
///
/// This field is only available if the `timestamps` feature is enabled.
#[cfg(feature = "timestamps")]
timestamps: Timestamps,
#[cfg(feature = "timestamps")]
timestamps_format: Option<&'static [FormatItem<'static>]>,
/// Whether to use color output or not.
///
/// This field is only available if the `color` feature is enabled.
#[cfg(feature = "colored")]
colors: bool,
}
impl SimpleLogger {
/// Initializes the global logger with a SimpleLogger instance with
/// default log level set to `Level::Trace`.
///
/// ```no_run
/// use simple_logger::SimpleLogger;
/// SimpleLogger::new().env().init().unwrap();
/// log::warn!("This is an example message.");
/// ```
///
/// [`init`]: #method.init
#[must_use = "You must call init() to begin logging"]
pub fn new() -> SimpleLogger {
SimpleLogger {
default_level: LevelFilter::Trace,
module_levels: Vec::new(),
#[cfg(feature = "threads")]
threads: false,
#[cfg(feature = "timestamps")]
timestamps: Timestamps::Utc,
#[cfg(feature = "timestamps")]
timestamps_format: None,
#[cfg(feature = "colored")]
colors: true,
}
}
/// Simulates env_logger behavior, which enables the user to choose log level by
/// setting a `RUST_LOG` environment variable. The `RUST_LOG` is not set or its value is not
/// recognized as one of the log levels, this function will use the `Error` level by default.
///
/// You may use the various builder-style methods on this type to configure
/// the logger, and you must call [`init`] in order to start logging messages.
///
/// ```no_run
/// use simple_logger::SimpleLogger;
/// SimpleLogger::from_env().init().unwrap();
/// log::warn!("This is an example message.");
/// ```
///
/// [`init`]: #method.init
#[must_use = "You must call init() to begin logging"]
#[deprecated(
since = "1.12.0",
note = "Use [`env`](#method.env) instead. Will be removed in version 2.0.0."
)]
pub fn from_env() -> SimpleLogger {
SimpleLogger::new().with_level(log::LevelFilter::Error).env()
}
/// Simulates env_logger behavior, which enables the user to choose log
/// level by setting a `RUST_LOG` environment variable. This will use
/// the default level set by [`with_level`] if `RUST_LOG` is not set or
/// can't be parsed as a standard log level.
///
/// This must be called after [`with_level`]. If called before
/// [`with_level`], it will have no effect.
///
/// [`with_level`]: #method.with_level
#[must_use = "You must call init() to begin logging"]
pub fn env(mut self) -> SimpleLogger {
self.default_level = std::env::var("RUST_LOG")
.ok()
.as_deref()
.map(log::LevelFilter::from_str)
.and_then(Result::ok)
.unwrap_or(self.default_level);
self
}
/// Set the 'default' log level.
///
/// You can override the default level for specific modules and their sub-modules using [`with_module_level`]
///
/// This must be called before [`env`]. If called after [`env`], it will override the value loaded from the environment.
///
/// [`env`]: #method.env
/// [`with_module_level`]: #method.with_module_level
#[must_use = "You must call init() to begin logging"]
pub fn with_level(mut self, level: LevelFilter) -> SimpleLogger {
self.default_level = level;
self
}
/// Override the log level for some specific modules.
///
/// This sets the log level of a specific module and all its sub-modules.
/// When both the level for a parent module as well as a child module are set,
/// the more specific value is taken. If the log level for the same module is
/// specified twice, the resulting log level is implementation defined.
///
/// # Examples
///
/// Silence an overly verbose crate:
///
/// ```no_run
/// use simple_logger::SimpleLogger;
/// use log::LevelFilter;
///
/// SimpleLogger::new().with_module_level("chatty_dependency", LevelFilter::Warn).init().unwrap();
/// ```
///
/// Disable logging for all dependencies:
///
/// ```no_run
/// use simple_logger::SimpleLogger;
/// use log::LevelFilter;
///
/// SimpleLogger::new()
/// .with_level(LevelFilter::Off)
/// .with_module_level("my_crate", LevelFilter::Info)
/// .init()
/// .unwrap();
/// ```
#[must_use = "You must call init() to begin logging"]
pub fn with_module_level(mut self, target: &str, level: LevelFilter) -> SimpleLogger {
self.module_levels.push((target.to_string(), level));
/* Normally this is only called in `init` to avoid redundancy, but we can't initialize the logger in tests */
#[cfg(test)]
self.module_levels
.sort_by_key(|(name, _level)| name.len().wrapping_neg());
self
}
/// Override the log level for specific targets.
#[must_use = "You must call init() to begin logging"]
#[deprecated(
since = "1.11.0",
note = "Use [`with_module_level`](#method.with_module_level) instead. Will be removed in version 2.0.0."
)]
pub fn with_target_levels(mut self, target_levels: HashMap<String, LevelFilter>) -> SimpleLogger {
self.module_levels = target_levels.into_iter().collect();
/* Normally this is only called in `init` to avoid redundancy, but we can't initialize the logger in tests */
#[cfg(test)]
self.module_levels
.sort_by_key(|(name, _level)| name.len().wrapping_neg());
self
}
/// Control whether thread names (and IDs) are printed or not.
///
/// This method is only available if the `threads` feature is enabled.
/// Thread names are disabled by default.
#[must_use = "You must call init() to begin logging"]
#[cfg(feature = "threads")]
pub fn with_threads(mut self, threads: bool) -> SimpleLogger {
self.threads = threads;
self
}
/// Control whether timestamps are printed or not.
///
/// Timestamps will be displayed in the local timezone.
///
/// This method is only available if the `timestamps` feature is enabled.
#[must_use = "You must call init() to begin logging"]
#[cfg(feature = "timestamps")]
#[deprecated(
since = "1.16.0",
note = "Use [`with_local_timestamps`] or [`with_utc_timestamps`] instead. Will be removed in version 2.0.0."
)]
pub fn with_timestamps(mut self, timestamps: bool) -> SimpleLogger {
if timestamps {
self.timestamps = Timestamps::Local
} else {
self.timestamps = Timestamps::None
}
self
}
/// Control the format used for timestamps.
///
/// Without this, a default format is used depending on the timestamps type.
///
/// The syntax for the format_description macro can be found in the
/// [`time` crate book](https://time-rs.github.io/book/api/format-description.html).
///
/// ```
/// simple_logger::SimpleLogger::new()
/// .with_level(log::LevelFilter::Debug)
/// .env()
/// .with_timestamp_format(time::macros::format_description!("[year]-[month]-[day] [hour]:[minute]:[second]"))
/// .init()
/// .unwrap();
/// ```
#[must_use = "You must call init() to begin logging"]
#[cfg(feature = "timestamps")]
pub fn with_timestamp_format(mut self, format: &'static [FormatItem<'static>]) -> SimpleLogger {
self.timestamps_format = Some(format);
self
}
/// Don't display any timestamps.
///
/// This method is only available if the `timestamps` feature is enabled.
#[must_use = "You must call init() to begin logging"]
#[cfg(feature = "timestamps")]
pub fn without_timestamps(mut self) -> SimpleLogger {
self.timestamps = Timestamps::None;
self
}
/// Display timestamps using the local timezone.
///
/// This method is only available if the `timestamps` feature is enabled.
#[must_use = "You must call init() to begin logging"]
#[cfg(feature = "timestamps")]
pub fn with_local_timestamps(mut self) -> SimpleLogger {
self.timestamps = Timestamps::Local;
self
}
/// Display timestamps using UTC.
///
/// This method is only available if the `timestamps` feature is enabled.
#[must_use = "You must call init() to begin logging"]
#[cfg(feature = "timestamps")]
pub fn with_utc_timestamps(mut self) -> SimpleLogger {
self.timestamps = Timestamps::Utc;
self
}
/// Display timestamps using a static UTC offset.
///
/// This method is only available if the `timestamps` feature is enabled.
#[must_use = "You must call init() to begin logging"]
#[cfg(feature = "timestamps")]
pub fn with_utc_offset(mut self, offset: UtcOffset) -> SimpleLogger {
self.timestamps = Timestamps::UtcOffset(offset);
self
}
/// Control whether messages are colored or not.
///
/// This method is only available if the `colored` feature is enabled.
#[must_use = "You must call init() to begin logging"]
#[cfg(feature = "colored")]
pub fn with_colors(mut self, colors: bool) -> SimpleLogger {
self.colors = colors;
self
}
/// 'Init' the actual logger, instantiate it and configure it,
/// this method MUST be called in order for the logger to be effective.
pub fn init(mut self) -> Result<(), SetLoggerError> {
#[cfg(all(windows, feature = "colored"))]
set_up_color_terminal();
/* Sort all module levels from most specific to least specific. The length of the module
* name is used instead of its actual depth to avoid module name parsing.
*/
self.module_levels
.sort_by_key(|(name, _level)| name.len().wrapping_neg());
let max_level = self.module_levels.iter().map(|(_name, level)| level).copied().max();
let max_level = max_level
.map(|lvl| lvl.max(self.default_level))
.unwrap_or(self.default_level);
log::set_max_level(max_level);
log::set_boxed_logger(Box::new(self))?;
Ok(())
}
}
impl Default for SimpleLogger {
/// See [this](struct.SimpleLogger.html#method.new)
fn default() -> Self {
SimpleLogger::new()
}
}
impl Log for SimpleLogger {
fn enabled(&self, metadata: &Metadata) -> bool {
&metadata.level().to_level_filter()
<= self
.module_levels
.iter()
/* At this point the Vec is already sorted so that we can simply take
* the first match
*/
.find(|(name, _level)| metadata.target().starts_with(name))
.map(|(_name, level)| level)
.unwrap_or(&self.default_level)
}
fn log(&self, record: &Record) {
if self.enabled(record.metadata()) {
let level_string = {
#[cfg(feature = "colored")]
{
if self.colors {
match record.level() {
Level::Error => format!("{:<5}", record.level().to_string()).red().to_string(),
Level::Warn => format!("{:<5}", record.level().to_string()).yellow().to_string(),
Level::Info => format!("{:<5}", record.level().to_string()).cyan().to_string(),
Level::Debug => format!("{:<5}", record.level().to_string()).purple().to_string(),
Level::Trace => format!("{:<5}", record.level().to_string()).normal().to_string(),
}
} else {
format!("{:<5}", record.level().to_string())
}
}
#[cfg(not(feature = "colored"))]
{
format!("{:<5}", record.level().to_string())
}
};
let target = if !record.target().is_empty() {
record.target()
} else {
record.module_path().unwrap_or_default()
};
let thread = {
#[cfg(feature = "threads")]
if self.threads {
let thread = std::thread::current();
format!("@{}", {
#[cfg(feature = "nightly")]
{
thread.name().unwrap_or(&thread.id().as_u64().to_string())
}
#[cfg(not(feature = "nightly"))]
{
thread.name().unwrap_or("?")
}
})
} else {
"".to_string()
}
#[cfg(not(feature = "threads"))]
""
};
let timestamp = {
#[cfg(feature = "timestamps")]
match self.timestamps {
Timestamps::None => "".to_string(),
Timestamps::Local => format!(
"{} ",
OffsetDateTime::now_local()
.expect(concat!(
"Could not determine the UTC offset on this system. ",
"Consider displaying UTC time instead. ",
"Possible causes are that the time crate does not implement \"local_offset_at\" ",
"on your system, or that you are running in a multi-threaded environment and ",
"the time crate is returning \"None\" from \"local_offset_at\" to avoid unsafe ",
"behaviour. See the time crate's documentation for more information. ",
"(https://time-rs.github.io/internal-api/time/index.html#feature-flags)"
))
.format(&self.timestamps_format.unwrap_or(TIMESTAMP_FORMAT_OFFSET))
.unwrap()
),
Timestamps::Utc => format!(
"{} ",
OffsetDateTime::now_utc()
.format(&self.timestamps_format.unwrap_or(TIMESTAMP_FORMAT_UTC))
.unwrap()
),
Timestamps::UtcOffset(offset) => format!(
"{} ",
OffsetDateTime::now_utc()
.to_offset(offset)
.format(&self.timestamps_format.unwrap_or(TIMESTAMP_FORMAT_OFFSET))
.unwrap()
),
}
#[cfg(not(feature = "timestamps"))]
""
};
let message = format!("{}{} [{}{}] {}", timestamp, level_string, target, thread, record.args());
#[cfg(not(feature = "stderr"))]
println!("{}", message);
#[cfg(feature = "stderr")]
eprintln!("{}", message);
}
}
fn flush(&self) {}
}
#[cfg(all(windows, feature = "colored"))]
fn set_up_color_terminal() {
use std::io::{stdout, IsTerminal};
if stdout().is_terminal() {
unsafe {
use windows_sys::Win32::Foundation::INVALID_HANDLE_VALUE;
use windows_sys::Win32::System::Console::{
GetConsoleMode, GetStdHandle, SetConsoleMode, CONSOLE_MODE, ENABLE_VIRTUAL_TERMINAL_PROCESSING,
STD_OUTPUT_HANDLE,
};
let stdout = GetStdHandle(STD_OUTPUT_HANDLE);
if stdout == INVALID_HANDLE_VALUE {
return;
}
let mut mode: CONSOLE_MODE = 0;
if GetConsoleMode(stdout, &mut mode) == 0 {
return;
}
SetConsoleMode(stdout, mode | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
}
}
}
/// Initialise the logger with its default configuration.
///
/// Log messages will not be filtered.
/// The `RUST_LOG` environment variable is not used.
pub fn init() -> Result<(), SetLoggerError> {
SimpleLogger::new().init()
}
/// Initialise the logger with its default configuration.
///
/// Log messages will not be filtered.
/// The `RUST_LOG` environment variable is not used.
///
/// This function is only available if the `timestamps` feature is enabled.
#[cfg(feature = "timestamps")]
pub fn init_utc() -> Result<(), SetLoggerError> {
SimpleLogger::new().with_utc_timestamps().init()
}
/// Initialise the logger with the `RUST_LOG` environment variable.
///
/// Log messages will be filtered based on the `RUST_LOG` environment variable.
pub fn init_with_env() -> Result<(), SetLoggerError> {
SimpleLogger::new().env().init()
}
/// Initialise the logger with a specific log level.
///
/// Log messages below the given [`Level`] will be filtered.
/// The `RUST_LOG` environment variable is not used.
pub fn init_with_level(level: Level) -> Result<(), SetLoggerError> {
SimpleLogger::new().with_level(level.to_level_filter()).init()
}
/// Use [`init_with_env`] instead.
///
/// This does the same as [`init_with_env`] but unwraps the result.
#[deprecated(
since = "1.12.0",
note = "Use [`init_with_env`] instead, which does not unwrap the result. Will be removed in version 2.0.0."
)]
pub fn init_by_env() {
init_with_env().unwrap()
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_module_levels_allowlist() {
let logger = SimpleLogger::new()
.with_level(LevelFilter::Off)
.with_module_level("my_crate", LevelFilter::Info);
assert!(logger.enabled(&create_log("my_crate", Level::Info)));
assert!(logger.enabled(&create_log("my_crate::module", Level::Info)));
assert!(!logger.enabled(&create_log("my_crate::module", Level::Debug)));
assert!(!logger.enabled(&create_log("not_my_crate", Level::Debug)));
assert!(!logger.enabled(&create_log("not_my_crate::module", Level::Error)));
}
#[test]
fn test_module_levels_denylist() {
let logger = SimpleLogger::new()
.with_level(LevelFilter::Debug)
.with_module_level("my_crate", LevelFilter::Trace)
.with_module_level("chatty_dependency", LevelFilter::Info);
assert!(logger.enabled(&create_log("my_crate", Level::Info)));
assert!(logger.enabled(&create_log("my_crate", Level::Trace)));
assert!(logger.enabled(&create_log("my_crate::module", Level::Info)));
assert!(logger.enabled(&create_log("my_crate::module", Level::Trace)));
assert!(logger.enabled(&create_log("not_my_crate", Level::Debug)));
assert!(!logger.enabled(&create_log("not_my_crate::module", Level::Trace)));
assert!(logger.enabled(&create_log("chatty_dependency", Level::Info)));
assert!(!logger.enabled(&create_log("chatty_dependency", Level::Debug)));
assert!(!logger.enabled(&create_log("chatty_dependency::module", Level::Debug)));
assert!(logger.enabled(&create_log("chatty_dependency::module", Level::Warn)));
}
#[test]
#[cfg(feature = "timestamps")]
fn test_timestamps_defaults() {
let builder = SimpleLogger::new();
assert!(builder.timestamps == Timestamps::Utc);
}
#[test]
#[cfg(feature = "timestamps")]
#[allow(deprecated)]
fn test_with_timestamps() {
let builder = SimpleLogger::new().with_timestamps(false);
assert!(builder.timestamps == Timestamps::None);
}
#[test]
#[cfg(feature = "timestamps")]
fn test_with_utc_timestamps() {
let builder = SimpleLogger::new().with_utc_timestamps();
assert!(builder.timestamps == Timestamps::Utc);
}
#[test]
#[cfg(feature = "timestamps")]
fn test_with_local_timestamps() {
let builder = SimpleLogger::new().with_local_timestamps();
assert!(builder.timestamps == Timestamps::Local);
}
#[test]
#[cfg(feature = "timestamps")]
#[allow(deprecated)]
fn test_with_timestamps_format() {
let builder =
SimpleLogger::new().with_timestamp_format(time::macros::format_description!("[hour]:[minute]:[second]"));
assert!(builder.timestamps_format.is_some());
}
#[test]
#[cfg(feature = "colored")]
fn test_with_colors() {
let mut builder = SimpleLogger::new();
assert!(builder.colors == true);
builder = builder.with_colors(false);
assert!(builder.colors == false);
}
fn create_log(name: &str, level: Level) -> Metadata {
let mut builder = Metadata::builder();
builder.level(level);
builder.target(name);
builder.build()
}
}