-
-
Notifications
You must be signed in to change notification settings - Fork 136
Open
Labels
Description
Is your feature request related to a problem?
No
Feature Request:
Currently, FAF logs replace the actual user path with %USER_PROFILE% in the client.log:
.replaceAll("(?i)" + Pattern.quote(userProfile), "%USER_PROFILE%")
which generates those logs in the client.log:
Added mod from %USER_PROFILE%\OneDrive\Documents\My Games\Gas Powered Games\Supreme Commander Forged Alliance\mods
Added map from %USER_PROFILE%\OneDrive\Documents\My Games\Gas Powered Games\Supreme Commander Forged Alliance\maps\
This is a custom placeholder, but it can be confusing for users because the standard Windows environment variable is %USERPROFILE%
Describe the solution you'd like
Suggestion:
Replace %USER_PROFILE% with %USERPROFILE% in log output so users can copy & paste paths directly into Explorer or CMD without manual adjustment.
Describe alternatives you've considered
None