rusty-man/tests/snapshots/output__1.42.0_macro_log_debug.snap
Robin Krahl 628377c83b
Refactor test suite to check multiple versions
This patch refactors the test suite:
- Instead of always generating the documentation with the available
  rustdoc version, we now store generated documentation for all
  supported rustdoc versions in the test/html directory.
- Instead of using one snapshot per test case, we now use one snapshot
  per test case and rustdoc version.
2020-09-11 20:30:05 +02:00

25 lines
645 B
Plaintext

---
source: tests/output.rs
expression: "get_stdout(&[item])"
---
log Macro log::debug rusty-man
SYNOPSIS
macro_rules! debug {
(target: $target:expr, $($arg:tt)+) => { ... };
($($arg:tt)+) => { ... };
}
DESCRIPTION
Logs a message at the debug level.
# Examples
ⓘThis code runs with edition 2018
use log::debug;
let pos = Position { x: 3.234, y: -1.223 };
debug!("New position: x: {}, y: {}", pos.x, pos.y);
debug!(target: "app_events", "New position: x: {}, y: {}", pos.x, pos.y);