From daf5f5a4d10513ff42e79fa7ef8819b170f3a13d Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 21 Oct 2013 13:08:31 -0700 Subject: Drop the '2' suffix from logging macros Who doesn't like a massive renaming? --- src/libstd/path/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libstd/path') diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs index 4962b63c8cf..f71f67a30db 100644 --- a/src/libstd/path/mod.rs +++ b/src/libstd/path/mod.rs @@ -54,12 +54,12 @@ actually operates on the path; it is only intended for display. ```rust let mut path = Path::new("/tmp/path"); -debug2!("path: {}", path.display()); +debug!("path: {}", path.display()); path.set_filename("foo"); path.push("bar"); -debug2!("new path: {}", path.display()); +debug!("new path: {}", path.display()); let b = std::os::path_exists(&path); -debug2!("path exists: {}", b); +debug!("path exists: {}", b); ``` */ -- cgit 1.4.1-3-g733a5