mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-11 19:15:22 +02:00
SSH Tracing: add filename to getFile
This commit is contained in:
parent
4da778ed1b
commit
f5e4eca250
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ public class SftpFileService extends AbstractFileService implements IFileService
|
||||||
SftpATTRS attrs = null;
|
SftpATTRS attrs = null;
|
||||||
if (fDirChannelMutex.waitForLock(monitor, fDirChannelTimeout)) {
|
if (fDirChannelMutex.waitForLock(monitor, fDirChannelTimeout)) {
|
||||||
try {
|
try {
|
||||||
attrs = getChannel("SftpFileService.getFile").stat(remoteParent+'/'+fileName); //$NON-NLS-1$
|
attrs = getChannel("SftpFileService.getFile: "+fileName).stat(remoteParent+'/'+fileName); //$NON-NLS-1$
|
||||||
Activator.trace("SftpFileService.getFile done"); //$NON-NLS-1$
|
Activator.trace("SftpFileService.getFile done"); //$NON-NLS-1$
|
||||||
node = makeHostFile(remoteParent, fileName, attrs);
|
node = makeHostFile(remoteParent, fileName, attrs);
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue