mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-17 13:15:44 +02:00
[282599] [dstore] log folder that is not a hidden one
This commit is contained in:
parent
2d57b79f85
commit
f505a440e8
1 changed files with 5 additions and 1 deletions
|
@ -3583,6 +3583,10 @@ public final class DataStore
|
||||||
if (logDirectory == null){
|
if (logDirectory == null){
|
||||||
logDirectory = ".eclipse" + File.separator + "RSE" + File.separator; //$NON-NLS-1$//$NON-NLS-2$
|
logDirectory = ".eclipse" + File.separator + "RSE" + File.separator; //$NON-NLS-1$//$NON-NLS-2$
|
||||||
}
|
}
|
||||||
|
// append a '/' if not there
|
||||||
|
if (logDirectory.charAt( logDirectory.length() -1 ) != File.separatorChar ) {
|
||||||
|
logDirectory = logDirectory + File.separator;
|
||||||
|
}
|
||||||
|
|
||||||
_userPreferencesDirectory = _userPreferencesDirectory + logDirectory + clientUserID;
|
_userPreferencesDirectory = _userPreferencesDirectory + logDirectory + clientUserID;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue