blob: b42c6b1731b6801fbcff1eb2d0443662f142ce27 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
use std::fs;
use std::fs::File;
use chrono::offset::Utc;
use simplelog::*;
use crate::error;
use crate::user;
lazy_static! {
static ref FILE: String = format!("/tmp/clinte_{}.log", *user::NAME);
}
pub fn init() -> error::Result<()> {
// If the log file exists on startup,
// move and timestamp it so we get a
// fresh log file.
if fs::metadata(FILE.clone()).is_ok() {
let mut new_file = FILE.clone();
let time = Utc::now().to_rfc3339();
new_file.push_str(".");
new_file.push_str(&time);
fs::rename(FILE.clone(), new_file)?;
}
CombinedLogger::init(vec![
TermLogger::new(LevelFilter::Warn, Config::default(), TerminalMode::Stderr).unwrap(),
WriteLogger::new(
LevelFilter::Info,
Config::default(),
File::create(FILE.clone())?,
),
])
.expect("Unable to initialize logging");
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
use log::info;
#[test]
fn init_logs() {
let blank = " ".bytes().collect::<Vec<u8>>();
fs::write(&*FILE, &blank).unwrap();
init().unwrap();
info!("TEST LOG MESSAGE");
let logfile = fs::read_to_string(&*FILE).unwrap();
assert!(logfile.contains("TEST LOG MESSAGE"));
}
}
|