Ver Fonte

Tweak extractarchive logging.

Martijn Laan há 3 meses atrás
pai
commit
17a85b56fc

+ 1 - 1
Projects/Src/Compression.SevenZipDLLDecoder.pas

@@ -1071,7 +1071,7 @@ begin
 
         { Log start of extraction }
         if ExtractIntent then begin
-          LogFmt('Extracting archive %s to %s. Recurse subdirs? %s', [ArchiveFilename,
+          LogFmt('Start extracting archive %s to %s. Recurse subdirs? %s', [ArchiveFilename,
             RemoveBackslashUnlessRoot(DestDir), SYesNo[RecurseSubDirs]]);
           var Solid: Boolean;
           if GetProperty(State.InArchive, $FFFF, kpidSolid, Solid) and Solid then

+ 2 - 0
Projects/Src/Setup.Install.pas

@@ -2020,6 +2020,8 @@ var
           finally
             ArchiveFindClose(H);
           end;
+
+          Log('Successfully extracted the archive.');
         end;
       finally
         ISSigVerifySourceF.Free;