scribe/tests/lib.rs
2015-12-09 17:51:31 -05:00

15 lines
207 B
Rust

#[macro_use]
extern crate scribe;
use scribe::LogLevel;
use scribe::location::Location;
use scribe::entry::Entry;
#[test]
pub fn test_log_call()
{
//log!(LogLevel::ERROR, "Test");
write_to_log!()
}