Skip to content

Commit 7e50202

Browse files
committed
added debugLongint
1 parent c006d3c commit 7e50202

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

_debugWindow.pas

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ procedure debugFormatEx(const msg: string; const args: array of const; MType: Tm
2929
procedure debugIndent;
3030
procedure debugint64(const identifier: string; const value: int64);
3131
procedure debuginteger(const identifier: string; const value: integer);
32+
procedure debugLongint(const identifier: string; const value: longint);
3233
procedure debugMethodEnter(const methodName: string);
3334
procedure debugMethodExit(const methodName: string);
3435
procedure debugOutdent;
@@ -243,6 +244,11 @@ procedure debuginteger(const identifier: string; const value: integer);
243244
debugEx(format('%s = %d', [identifier, value]), mtInformation);
244245
end;
245246

247+
procedure debugLongint(const identifier: string; const value: longint);
248+
begin
249+
debugEx(format('%s = %d', [identifier, value]), mtInformation);
250+
end;
251+
246252
procedure debugMethodEnter(const methodName: string);
247253
begin
248254
debugEx('Enter ' + methodName, mtInformation);

0 commit comments

Comments
 (0)