diff --git a/src/python/dm/__init__.py b/src/python/dm/__init__.py index 1f22a74fa28625402bc9e17b5354648b2e382565..d3ba006f6a784753d4e64bb3a324ac922c807778 100644 --- a/src/python/dm/__init__.py +++ b/src/python/dm/__init__.py @@ -1 +1 @@ -__version__ = "0.10 (2016.03.18)" +__version__ = "0.10 (2016.03.21)" diff --git a/src/python/dm/common/client/sessionManager.py b/src/python/dm/common/client/sessionManager.py index 63811af1b1c672bfeb89e5ff38f7e9a33d00c1f1..2e2dbc69f4b6ecb722c0657275247268134358a6 100755 --- a/src/python/dm/common/client/sessionManager.py +++ b/src/python/dm/common/client/sessionManager.py @@ -159,7 +159,7 @@ class SessionManager: parsedUrl = urlparse.urlparse(url) protocol = parsedUrl[0] path = parsedUrl[2] - self.logger.debug('Sending request: %s' % url) + #self.logger.debug('Sending request: %s' % url) encodedData = '' if data is not None: if type(data) == types.DictType and len(data): diff --git a/src/python/dm/common/processing/plugins/mongoDbFileCatalogPlugin.py b/src/python/dm/common/processing/plugins/mongoDbFileCatalogPlugin.py index eb3e8e4e385763aaadd38c3774dd55308b8b728c..38bd600044472a4e6b8f2a4d942f4a3683cb26b0 100755 --- a/src/python/dm/common/processing/plugins/mongoDbFileCatalogPlugin.py +++ b/src/python/dm/common/processing/plugins/mongoDbFileCatalogPlugin.py @@ -18,7 +18,7 @@ class MongoDbFileCatalogPlugin(FileProcessor): def processFile(self, fileInfo): experimentFilePath = fileInfo.get('experimentFilePath') experimentName = fileInfo.get('experimentName') - self.logger.debug('Processing file "%s" for experiment %s: %s' % (experimentFilePath, experimentName, fileInfo)) + self.logger.debug('Processing file "%s" for experiment %s' % (experimentFilePath, experimentName)) daqInfo = fileInfo.get('daqInfo') storageDirectory = daqInfo.get('storageDirectory') diff --git a/src/python/dm/common/processing/plugins/rsyncFileTransferPlugin.py b/src/python/dm/common/processing/plugins/rsyncFileTransferPlugin.py index 937fe1e572f0c2e012048c59c3517605d5f5e7af..4c0bac6c123ee335b944567f4ac401144defbb9d 100755 --- a/src/python/dm/common/processing/plugins/rsyncFileTransferPlugin.py +++ b/src/python/dm/common/processing/plugins/rsyncFileTransferPlugin.py @@ -64,7 +64,7 @@ class RsyncFileTransferPlugin(FileTransferPlugin): FileUtility.getMd5Sum(filePath, fileInfo) # Transfer file - self.logger.debug('Starting transfer: %s' % fileInfo) + self.logger.debug('Starting transfer: %s -> %s' % (srcUrl, destUrl)) self.start(src=srcUrl, dest=destUrl, templateInfo=fileInfo, cwd=dataDirectory) # Get remote checksum diff --git a/src/python/dm/daq_web_service/service/impl/dsProcessFileNotificationPlugin.py b/src/python/dm/daq_web_service/service/impl/dsProcessFileNotificationPlugin.py index 68cf9d02fdad25c075f6133b091ff14a5bead522..d76a617b97c9d03b0e5633577ba2dd3aff7b572e 100755 --- a/src/python/dm/daq_web_service/service/impl/dsProcessFileNotificationPlugin.py +++ b/src/python/dm/daq_web_service/service/impl/dsProcessFileNotificationPlugin.py @@ -18,7 +18,7 @@ class DsProcessFileNotificationPlugin(FileProcessor): experimentName = fileInfo.get('experimentName') daqInfo = fileInfo.get('daqInfo', {}) md5Sum = fileInfo.get('md5Sum') - self.logger.debug('Processing file %s for experiment %s: %s' % (experimentFilePath, experimentName, str(fileInfo))) + self.logger.debug('Processing file %s for experiment %s' % (experimentFilePath, experimentName)) # Prepare dictionary for processing. Only send needed data. fileInfo2 = {}