From 7529fdf878a71eaf1d18632fce95e7158bd2b48f Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Mon, 2 Dec 2019 15:14:19 -0500 Subject: [PATCH] Add logging --- FileLiberator/UNTESTED/DecryptBook.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/FileLiberator/UNTESTED/DecryptBook.cs b/FileLiberator/UNTESTED/DecryptBook.cs index 780bb828..f799552c 100644 --- a/FileLiberator/UNTESTED/DecryptBook.cs +++ b/FileLiberator/UNTESTED/DecryptBook.cs @@ -101,11 +101,9 @@ namespace FileLiberator // REAL WORK DONE HERE var success = await Task.Run(() => converter.Run()); + // decrypt failed if (!success) - { - Console.WriteLine("decrypt failed"); return null; - } Configuration.Instance.DecryptKey = converter.decryptKey;