File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ procedure debugFormatEx(const msg: string; const args: array of const; MType: Tm
2929procedure debugIndent ;
3030procedure debugint64 (const identifier: string; const value : int64);
3131procedure debuginteger (const identifier: string; const value : integer);
32+ procedure debugLongint (const identifier: string; const value : longint);
3233procedure debugMethodEnter (const methodName: string);
3334procedure debugMethodExit (const methodName: string);
3435procedure debugOutdent ;
@@ -243,6 +244,11 @@ procedure debuginteger(const identifier: string; const value: integer);
243244 debugEx(format(' %s = %d' , [identifier, value ]), mtInformation);
244245end ;
245246
247+ procedure debugLongint (const identifier: string; const value : longint);
248+ begin
249+ debugEx(format(' %s = %d' , [identifier, value ]), mtInformation);
250+ end ;
251+
246252procedure debugMethodEnter (const methodName: string);
247253begin
248254 debugEx(' Enter ' + methodName, mtInformation);
You can’t perform that action at this time.
0 commit comments