Commit 98d1dd98 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Added some output for debugging purposes.

parent e510d438
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -35,7 +35,12 @@ class RetrieveExecutor(TaskExecutor):
            osRelParentPath = os.path.dirname(osRelPath)
            if osRelParentPath != "/":
                osRelParentPath += "/"
            out = open("retrieve_executor_log.txt", "a")
            out.write(f"srcPath: {srcPath}\n")
            out.write(f"osRelPath: {osRelPath}\n")
            out.write(f"osRelParentPath: {osRelParentPath}\n")            
            destPath = self.storageRetrievePath.replace("{username}", username) + osRelParentPath
            out.write(f"destPath: {destPath}\n\n")
            if storageType == "cold":
                #srcPathPrefix = self.tapeStorageBasePath.replace("{username}", self.username)
                # TO BE DONE