# encoding: utf-8 module Backup module Encryptor class Base include Backup::CLI include Backup::Configuration::Helpers ## # Logs a message to the console and log file to inform # the client that Backup is encrypting the archive def log! Logger.message "#{ self.class } started encrypting the archive." end end end end