A simple start at a logging facility.

This commit is contained in:
Jason Smith
2015-12-09 17:51:31 -05:00
parent 3b1567d357
commit 38b626070a
8 changed files with 232 additions and 0 deletions

14
tests/lib.rs Normal file
View File

@ -0,0 +1,14 @@
#[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!()
}