2
0
mirror of https://github.com/xvxx/phetch synced 2024-11-05 00:00:58 +00:00

use log! results

This commit is contained in:
chris west 2020-05-14 14:42:56 -07:00
parent 9d54fb370a
commit 05b78919cd

View File

@ -17,8 +17,8 @@ macro_rules! log {
.open("phetch.log")
{
use std::io::prelude::*;
file.write($e.as_ref());
file.write(b"\n");
file.write($e.as_ref()).unwrap();
file.write(b"\n").unwrap();
}
}
}};