/// <summary> Clears the old logs that are ready to be expired, per instance-wide settings </summary>
        /// <param name="Settings"> Instance-wide settings which may be required for this process </param>
        public override void DoWork(InstanceWide_Settings Settings)
        {
            // Clear the old logs
            OnProcess("ExpireOldLogEntriesModule : Expiring old log entries", "Standard", null, null, -1);

            // Clear the logs
            Engine_Database.Builder_Expire_Log_Entries(Settings.Builder.Log_Expiration_Days);
        }