From 4ea228a9e3db3da13e41d99e94dca2a26e25d9ab Mon Sep 17 00:00:00 2001 From: martin Date: Fri, 28 Feb 2014 17:42:19 +0000 Subject: [PATCH] LazLogger: fixed logfile with relative path git-svn-id: trunk@44296 - --- components/lazutils/lazlogger.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lazutils/lazlogger.pas b/components/lazutils/lazlogger.pas index 2b8fe8cf52..73163fc76e 100644 --- a/components/lazutils/lazlogger.pas +++ b/components/lazutils/lazlogger.pas @@ -253,7 +253,7 @@ begin if FLogName = AValue then Exit; DoCloseFile; - FLogName := CreateAbsolutePath(AValue, GetCurrentDirUTF8); + FLogName := CleanAndExpandFilename(AValue); FLogTextFailed := False; end;