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
91
|
Begin processing the 1st record. Run 1, Event 1, LumiSection 1 on stream 0 at {Timestamp}
%MSG-e cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 1
LogError was used to send this message-which is long enough to span lines but-will not be broken up by the logger any more
%MSG
%MSG-e cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 1
LogError was used to send this other message
%MSG
%MSG-w cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 1
LogWarning was used to send this message
%MSG
%MSG-w cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 1
LogWarning was used to send this other message
%MSG
%MSG-i cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 1
LogInfo was used to send this message
%MSG
%MSG-i cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 1
LogInfo was used to send this other message
%MSG
%MSG-i FwkTest: UnitTestClient_A:sendSomeMessages Run: 1 Event: 1
<Message>LogInfo was used to send a job report</Message>
%MSG
Begin processing the 2nd record. Run 1, Event 2, LumiSection 1 on stream 0 at {Timestamp}
%MSG-e cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 2
LogError was used to send this message-which is long enough to span lines but-will not be broken up by the logger any more
%MSG
%MSG-e cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 2
LogError was used to send this other message
%MSG
%MSG-w cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 2
LogWarning was used to send this message
%MSG
%MSG-w cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 2
LogWarning was used to send this other message
%MSG
%MSG-i cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 2
LogInfo was used to send this message
%MSG
%MSG-i cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 2
LogInfo was used to send this other message
%MSG
%MSG-i FwkTest: UnitTestClient_A:sendSomeMessages Run: 1 Event: 2
<Message>LogInfo was used to send a job report</Message>
%MSG
Begin processing the 3rd record. Run 1, Event 3, LumiSection 1 on stream 0 at {Timestamp}
%MSG-e cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 3
LogError was used to send this message-which is long enough to span lines but-will not be broken up by the logger any more
%MSG
%MSG-e cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 3
LogError was used to send this other message
%MSG
%MSG-w cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 3
LogWarning was used to send this message
%MSG
%MSG-w cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 3
LogWarning was used to send this other message
%MSG
%MSG-i cat_A: UnitTestClient_A:sendSomeMessages Run: 1 Event: 3
LogInfo was used to send this message
%MSG
%MSG-i cat_B: UnitTestClient_A:sendSomeMessages Run: 1 Event: 3
LogInfo was used to send this other message
%MSG
%MSG-i FwkTest: UnitTestClient_A:sendSomeMessages Run: 1 Event: 3
<Message>LogInfo was used to send a job report</Message>
%MSG
=============================================
MessageLogger Summary
type category sev module subroutine count total
---- -------------------- -- ------------------------- --------------------- ----- -----
1 cat_A -w UnitTestClient_A:sendSome 3 3
2 cat_B -w UnitTestClient_A:sendSome 3 3
3 cat_A -e UnitTestClient_A:sendSome 3 3
4 cat_B -e UnitTestClient_A:sendSome 3 3
type category Examples: run/evt run/evt run/evt
---- -------------------- ---------------- ---------------- ----------------
1 cat_A 1/1 1/2 1/3
2 cat_B 1/1 1/2 1/3
3 cat_A 1/1 1/2 1/3
4 cat_B 1/1 1/2 1/3
Severity # Occurrences Total Occurrences
-------- ------------- -----------------
Warning 6 6
Error 6 6
dropped waiting message count 0
|