Skip to content

Commit

Permalink
simplelogger, set inline for short method
Browse files Browse the repository at this point in the history
  • Loading branch information
riderkick committed Aug 10, 2015
1 parent ede77fe commit 69671c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions baseunits/SimpleException/USimpleLogger.pas
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ interface
_LOG_SYMBOL = 'EWIDV';

procedure SetLogFile(const LogFileName: String);
procedure WriteLog_E(const msg: String); overload;
procedure WriteLog_E(const msg: String); overload; inline;
procedure WriteLog_E(const msg: String; Exc: Exception; Sender: TObject = nil); overload;
procedure Writelog_W(const msg: String);
procedure Writelog_I(const msg: String);
procedure Writelog_D(const msg: String);
procedure Writelog_V(const msg: String);
procedure Writelog_W(const msg: String); inline;
procedure Writelog_I(const msg: String); inline;
procedure Writelog_D(const msg: String); inline;
procedure Writelog_V(const msg: String); inline;
function SimpleBackTraceStr(const Addr: Pointer): String;
function GetStackTraceInfo(const MaxStackCount: Integer = 20): string;

Expand Down

0 comments on commit 69671c5

Please sign in to comment.