diff --git a/settings.sample.yaml b/settings.sample.yaml index 13e00f8..3855cd7 100644 --- a/settings.sample.yaml +++ b/settings.sample.yaml @@ -93,8 +93,6 @@ extended_options: # "debug", "trace", and "off", which disables logging. # logging_level: info - # Warning: Experimental. Will cause problems. - # # Enables disk encryption where the key is stored in memory. In other words, # when the MD@H program is stopped, all cached files are irrecoverable. # Practically speaking, this isn't all too useful (and definitely hurts diff --git a/src/main.rs b/src/main.rs index 464c91b..71d0ed0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -299,10 +299,6 @@ fn print_preamble_and_warnings(args: &Config) -> Result<(), Box> { build_string ); - if args.ephemeral_disk_encryption { - error!("Encrypted files are _very_ broken; caveat emptor!"); - } - if !args.unstable_options.is_empty() { warn!("Unstable options are enabled. These options should not be used in production!"); }