volmark 0.1.0

Debugging and other macros for my Hornvale project.
Documentation
#![allow(unused_imports)]
#![allow(unused_macros)]

use volmark::*;

#[named]
fn main() {
  init_pretty_env_logger();
  trace_enter!();
  info!("such information");
  warn!("o_O");
  error!("much error");
  if cfg!(debug_assertions) {
    println!("Debugging enabled.");
  } else {
    println!("Debugging disabled.");
  }
  println!("Hello, world!");
  trace_exit!();
}