lewp-html 0.2.0

Straightforward HTML document building. Write your HTML with full algorithmic power instead of creating messy and confusing templates that contain typing errors.
Documentation
//! Contains modified versions of the log crate.

/// Error log with added prefix for this crate.
macro_rules! error {
    ($($arg:tt)*) => (
        log::error!("(LEWP-DOM) {}", format!($($arg)*));
    )
}

/// Warning log with added prefix for this crate.
macro_rules! warn {
    ($($arg:tt)*) => (
        log::warn!("(LEWP-DOM) {}", format!($($arg)*));
    )
}

/// Info log with added prefix for this crate.
macro_rules! info {
    ($($arg:tt)*) => (
        log::info!("(LEWP-DOM) {}", format!($($arg)*));
    )
}

/// Debug log with added prefix for this crate.
macro_rules! debug {
    ($($arg:tt)*) => (
        log::debug!("(LEWP-DOM) {}", format!($($arg)*));
    )
}

/// Trace log with added prefix for this crate.
macro_rules! trace {
    ($($arg:tt)*) => (
        log::trace!("(LEWP-DOM) {}", format!($($arg)*));
    )
}