-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDPM.Creator.Logger.pas
90 lines (71 loc) · 1.91 KB
/
DPM.Creator.Logger.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
unit DPM.Creator.Logger;
interface
uses
System.Classes,
DPM.Core.Types,
DPM.Core.Logging
;
type
TDSpecLogger = class(TInterfacedObject, ILogger)
private
strList : TStrings;
FVerbosity : TVerbosity;
public
procedure Debug(const data : string);
procedure Verbose(const data : string; const important : boolean = false);
procedure Information(const data : string; const important : boolean = false);
procedure Warning(const data : string; const important : boolean = false);
procedure Error(const data : string);
procedure Success(const data : string; const important : boolean = false);
procedure Clear; //not implemented in the console logger.
procedure NewLine;
function GetVerbosity : TVerbosity;
procedure SetVerbosity(const value : TVerbosity);
constructor Create(sl: TStrings);
end;
implementation
{ TDSpecLogger }
procedure TDSpecLogger.Clear;
begin
end;
constructor TDSpecLogger.Create(sl: TStrings);
begin
strList := sl;
end;
procedure TDSpecLogger.Debug(const data: string);
begin
strList.Add('DEBUG: ' + data);
end;
procedure TDSpecLogger.Error(const data: string);
begin
strList.Add('ERROR: ' + data);
end;
function TDSpecLogger.GetVerbosity: TVerbosity;
begin
Result := FVerbosity;
end;
procedure TDSpecLogger.Information(const data: string; const important: boolean);
begin
strList.Add('INFORMATION: ' + data);
end;
procedure TDSpecLogger.NewLine;
begin
strList.Add('');
end;
procedure TDSpecLogger.SetVerbosity(const value: TVerbosity);
begin
FVerbosity := value;
end;
procedure TDSpecLogger.Success(const data: string; const important: boolean);
begin
strList.Add('SUCCESS: ' + data);
end;
procedure TDSpecLogger.Verbose(const data: string; const important: boolean);
begin
strList.Add('VERBOSE: ' + data);
end;
procedure TDSpecLogger.Warning(const data: string; const important: boolean);
begin
strList.Add('WARNING: ' + data);
end;
end.