0a17d717d7
This patch adds tests for Rust 1.52.0. With Rust 1.52.0, the format of the search index changed so we have to disable the search index tests. Otherwise we can copy the snapshots with only small modifications taking into account the change from simple quotes and apostrophes ("') to typographically correct ones (“”’).
25 lines
629 B
Plaintext
25 lines
629 B
Plaintext
---
|
|
source: tests/output.rs
|
|
expression: "get_stdout(path, &[\"log::debug\"])"
|
|
---
|
|
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
|
|
|
|
ⓘ
|
|
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);
|
|
|
|
|