forked from danieleteti/loggerpro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoggerPro.SimpleConsoleAppender.pas
45 lines (35 loc) · 1.13 KB
/
LoggerPro.SimpleConsoleAppender.pas
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
unit LoggerPro.SimpleConsoleAppender;
{ <@abstract(The unit to include if you want to use @link(TLoggerProSimpleConsoleAppender))
@author(David Cornelius) }
{$IFNDEF CONSOLE}
{$MESSAGE FATAL 'This unit should only be used in console applications'}
{$ENDIF}
interface
uses
System.Classes, System.SysUtils,
LoggerPro;
type
{ @abstract(This appender assumes the application is running from the console and simply uses Writeln
without any dependency on Windows to send logs to the current console; this allows console logging from Linux)
To learn how to use this appender, check the sample @code(SimpleConsole_appender.dproj)
}
TLoggerProSimpleConsoleAppender = class(TLoggerProAppenderBase)
public
procedure Setup; override;
procedure TearDown; override;
procedure WriteLog(const aLogItem: TLogItem); override;
end;
implementation
procedure TLoggerProSimpleConsoleAppender.Setup;
begin
inherited;
end;
procedure TLoggerProSimpleConsoleAppender.TearDown;
begin
// do nothing
end;
procedure TLoggerProSimpleConsoleAppender.WriteLog(const aLogItem: TLogItem);
begin
Writeln(FormatLog(aLogItem));
end;
end.