mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-11 14:20:02 +02:00
Merge branch 'IDE/CmdLine/Help' into 'main'
IDE: Add "--debug-close-log" option description to command line help output See merge request freepascal.org/lazarus/lazarus!510
This commit is contained in:
commit
81982802c2
@ -160,6 +160,9 @@ resourcestring
|
||||
'directory where Lazarus searches for config template files. Default is "%s".';
|
||||
lisFileWhereDebugOutputIsWritten =
|
||||
'File where debug output is written to. Default is write to the console.';
|
||||
lisDebugLogCloseOptDescr =
|
||||
'Close log file between writes. Prevents loss of unsaved data when the IDE crashes. '+
|
||||
'By default, writes are buffered by the OS for performance.';
|
||||
lisSkipStartupChecks = 'Skip selected checks at startup. Valid options are:';
|
||||
lisGroupsForDebugOutput = 'Enable or disable groups of debug output. ' +
|
||||
'Valid options are:';
|
||||
|
@ -1125,6 +1125,7 @@ var
|
||||
AddCmdLineParamDesc(result, ['--verbose'], lisBeMoreVerboseCanBeGivenMultipleTimes);
|
||||
// debug file
|
||||
AddCmdLineParamDesc(result, [DebugLogOpt + '<file>'], lisFileWhereDebugOutputIsWritten);
|
||||
AddCmdLineParamDesc(result, [DebugLogCloseLogOpt], lisDebugLogCloseOptDescr);
|
||||
// debug groups (sorted)
|
||||
lLogGroups := TStringList.Create;
|
||||
for i := 0 to DebugLogger.LogGroupList.Count - 1 do
|
||||
|
Loading…
Reference in New Issue
Block a user