LazLogger: fix parsing parameters (handling "=") / Issue #39812

This commit is contained in:
Martin 2022-08-07 23:20:22 +02:00
parent 795b94703f
commit 20a05aea86
2 changed files with 11 additions and 3 deletions

View File

@ -569,7 +569,11 @@ end;
procedure TLazLoggerFile.SetParamForLogFileName(AValue: String);
begin
if FParamForLogFileName = AValue then Exit;
if (AValue <> '') and (AValue[Length(AValue)] = '=') then
Delete(AValue, Length(AValue), 1);
if FParamForLogFileName = AValue then
Exit;
Finish;
FGetLogFileNameDone := False;
FParamForLogFileName := AValue;
@ -800,7 +804,7 @@ begin
FParamForLogFileName := '';
FEnvironmentForLogFileName := '';
{$else}
FParamForLogFileName := '--debug-log=';
FParamForLogFileName := '--debug-log';
FEnvironmentForLogFileName := '*_debuglog';
{$endif}
end;

View File

@ -1166,7 +1166,11 @@ end;
procedure TLazLoggerWithGroupParam.SetParamForEnabledLogGroups(AValue: String);
begin
if FParamForEnabledLogGroups = AValue then Exit;
if (AValue <> '') and (AValue[Length(AValue)] = '=') then
Delete(AValue, Length(AValue), 1);
if FParamForEnabledLogGroups = AValue then
Exit;
FParamForEnabledLogGroups := AValue;
ParseParamForEnabledLogGroups;
end;