refactor: Remove the unused log command argument

This commit is contained in:
Rostislav Raykov 2019-09-17 21:45:50 +02:00
parent b1f1c63585
commit 1e04c69d5e

View file

@ -30,11 +30,6 @@ struct Cli {
/// Cache file for previously reported IP address (if skipped the IP will be reported on every execution)
#[structopt(long = "cache", short = "c")]
cache: Option<PathBuf>,
// TODO: implement logging later
/// Log file (if skipped stdOut is used)
#[structopt(long = "log", short = "l")]
log_file: Option<PathBuf>,
}
fn main() -> CliResult {