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:
parent
f0eead0d80
commit
1881d5a14f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue