file-sniffer 3.0.1

Command-line tool to find build artifacts and junk on your computer.
Documentation
#[cfg(feature = "verbose")]
macro_rules! debugln {
    ($fmt:expr) => (println!($fmt));
    ($fmt:expr, $($arg:tt)*) => (println!($fmt, $($arg)*));
}

#[cfg(not(feature = "verbose"))]
macro_rules! debugln {
    ($fmt:expr) => ();
    ($fmt:expr, $($arg:tt)*) => ();
}