Skip to content

Commit 8f039c3

Browse files
author
Grahame Grieve
committed
move tx-registry functionality to new server
1 parent 9edd5b6 commit 8f039c3

7 files changed

Lines changed: 18 additions & 2569 deletions

File tree

library/fsl/fsl_logging.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ procedure TFslTimeTracker.step(name: String);
884884
t : int64;
885885
begin
886886
t := GetTickCount64;
887-
Flog.append(inttostr(t-FStart)+' '+inttostr(t - FLast)+': '+name+#13#10);
887+
Flog.append(StringPadRight(inttostr(t-FStart)+' '+inttostr(t - FLast), ' ', 8)+': '+name+#13#10);
888888
FLast := t;
889889
end;
890890

0 commit comments

Comments
 (0)