1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 17:45:24 +02:00

Improve tracing for SftpFileService.delete

This commit is contained in:
Martin Oberhuber 2006-08-25 08:33:18 +00:00
parent f0eead0d80
commit 1881d5a14f

View file

@ -542,7 +542,7 @@ public class SftpFileService extends AbstractFileService implements IFileService
public boolean delete(IProgressMonitor monitor, String remoteParent, String fileName) throws SystemMessageException public boolean delete(IProgressMonitor monitor, String remoteParent, String fileName) throws SystemMessageException
{ {
boolean ok=false; boolean ok=false;
Activator.trace("SftpFileService.delete"); //$NON-NLS-1$ Activator.trace("SftpFileService.delete.waitForLock"); //$NON-NLS-1$
if (fDirChannelMutex.waitForLock(monitor, fDirChannelTimeout)) { if (fDirChannelMutex.waitForLock(monitor, fDirChannelTimeout)) {
try { try {
String fullPath = remoteParent + '/' + fileName; String fullPath = remoteParent + '/' + fileName;