Skip to content
Snippets Groups Projects
Commit e04799be authored by sveseli's avatar sveseli
Browse files

debug statements

parent 3b24b63e
No related branches found
No related tags found
No related merge requests found
...@@ -56,9 +56,10 @@ class GridftpFileTransferPlugin(FileTransferPlugin): ...@@ -56,9 +56,10 @@ class GridftpFileTransferPlugin(FileTransferPlugin):
filePaths = filePathsDict.keys() filePaths = filePathsDict.keys()
for filePath in filePaths: for filePath in filePaths:
filePathDict = filePathsDict.get(filePath) filePathDict = filePathsDict.get(filePath)
experimentFilePath = os.path.relpath(filePath, dataDirectory) #experimentFilePath = os.path.relpath(filePath, dataDirectory)
storageFilePath = os.path.join(storageDirectory, experimentFilePath) #storageFilePath = os.path.join(storageDirectory, experimentFilePath)
storageFilePathDict = storageFilePathsDict.get(storageFilePath) #storageFilePathDict = storageFilePathsDict.get(storageFilePath)
storageFilePathDict = storageFilePathsDict.get(filePath)
self.logger.debug("SVDBG SRC: %s", filePathDict) self.logger.debug("SVDBG SRC: %s", filePathDict)
self.logger.debug("SVDBG DEST: %s", storageFilePathDict) self.logger.debug("SVDBG DEST: %s", storageFilePathDict)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment