blargle 0.1.0

Provides debugging macros which resolves to compiler errors for release builds
Documentation
#[test]
fn test_placeholder() {
    blargle::placeholder!();
}

#[test]
fn test_println() {
    blargle::println!("Check: {}", 1 + 1);
}

#[test]
fn test_print() {
    blargle::print!("Check: {}", 1 + 1);
}

#[test]
fn test_eprintln() {
    blargle::eprintln!("Check: {}", 1 + 1);
}

#[test]
fn test_eprint() {
    blargle::eprint!("Check: {}", 1 + 1);
}

#[test]
fn test_dbg() {
    blargle::dbg!("Check: {}", 1 + 1);
}

#[cfg(feature = "log")]
#[test]
fn test_log_error() {
    blargle::log_error!("Check: {}", 1 + 1);
}

#[cfg(feature = "log")]
#[test]
fn test_log_warn() {
    blargle::log_warn!("Check: {}", 1 + 1);
}

#[cfg(feature = "log")]
#[test]
fn test_log_info() {
    blargle::log_info!("Check: {}", 1 + 1);
}

#[cfg(feature = "log")]
#[test]
fn test_log_debug() {
    blargle::log_debug!("Check: {}", 1 + 1);
}

#[cfg(feature = "log")]
#[test]
fn test_log_trace() {
    blargle::log_trace!("Check: {}", 1 + 1);
}