15 lines
207 B
Rust
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!()
|
|
}
|