1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
unit unDebugHelper;

(*

  Debug Helper APIs

*)

interface

  //Debug Helpers
  procedure DebugMsg(const msg: string);overload;
  procedure DebugMsg(const fmt: string; const args: array of const); overload;

implementation

uses Windows, SysUtils, GS5;

procedure DebugMsg(const msg: string);overload;
begin
  OutputDebugString(PAnsiChar(msg));
  TGSCore.getInstance.trace(msg);
end;

procedure DebugMsg(const fmt: string; const args: array of const); overload;
begin
  OutputDebugString(PAnsiChar(Format(fmt, args)));
end;

end.