aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/ULog.pas
diff options
context:
space:
mode:
Diffstat (limited to 'Game/Code/Classes/ULog.pas')
-rw-r--r--Game/Code/Classes/ULog.pas10
1 files changed, 5 insertions, 5 deletions
diff --git a/Game/Code/Classes/ULog.pas b/Game/Code/Classes/ULog.pas
index 6bffa04e..0b492cb3 100644
--- a/Game/Code/Classes/ULog.pas
+++ b/Game/Code/Classes/ULog.pas
@@ -139,7 +139,7 @@ var
Miliseconds: integer;
ValueText: string;
begin
- if Ini.Debug = 1 then begin
+ //if Ini.Debug = 1 then begin
if not FileAnalyzeO then begin
AssignFile(FileAnalyze, LogPath + 'Analyze.log');
@@ -154,7 +154,7 @@ begin
Flush(FileAnalyze); // try to speed up
end;
- end;
+ //end;
end;
procedure TLog.LogError(Text: string);
@@ -202,8 +202,9 @@ end;
procedure TLog.LogStatus(Log1, Log2: string);
begin
-//asd
- LogError (Log2 + ': ' + Log1);
+ //Just for Debugging
+ //Comment for Release
+ //LogAnalyze (Log2 + ': ' + Log1);
end;
procedure TLog.LogError(Log1, Log2: string);
@@ -224,4 +225,3 @@ begin
end;
end.
- \ No newline at end of file