@@ -12,16 +12,16 @@ internal static partial class Log
12
12
EventId = 0 ,
13
13
Message = "Resilience event occurred. " +
14
14
"EventName: '{EventName}', " +
15
- "Source: '{BuilderName }/{BuilderInstance }/{StrategyName}', " +
15
+ "Source: '{PipelineName }/{PipelineInstance }/{StrategyName}', " +
16
16
"Operation Key: '{OperationKey}', " +
17
17
"Result: '{Result}'" ,
18
18
EventName = "ResilienceEvent" ) ]
19
19
public static partial void ResilienceEvent (
20
20
this ILogger logger ,
21
21
LogLevel logLevel ,
22
22
string eventName ,
23
- string builderName ,
24
- string builderInstance ,
23
+ string pipelineName ,
24
+ string pipelineInstance ,
25
25
string ? strategyName ,
26
26
string ? operationKey ,
27
27
object ? result ,
@@ -31,21 +31,21 @@ public static partial void ResilienceEvent(
31
31
1 ,
32
32
LogLevel . Debug ,
33
33
"Resilience pipeline executing. " +
34
- "Source: '{BuilderName }/{BuilderInstance }', " +
34
+ "Source: '{PipelineName }/{PipelineInstance }', " +
35
35
"Operation Key: '{OperationKey}', " +
36
36
"Result Type: '{ResultType}'" ,
37
37
EventName = "StrategyExecuting" ) ]
38
38
public static partial void PipelineExecuting (
39
39
this ILogger logger ,
40
- string builderName ,
41
- string builderInstance ,
40
+ string pipelineName ,
41
+ string pipelineInstance ,
42
42
string ? operationKey ,
43
43
string resultType ) ;
44
44
45
45
[ LoggerMessage (
46
46
EventId = 2 ,
47
47
Message = "Resilience pipeline executed. " +
48
- "Source: '{BuilderName }/{BuilderInstance }', " +
48
+ "Source: '{PipelineName }/{PipelineInstance }', " +
49
49
"Operation Key: '{OperationKey}', " +
50
50
"Result Type: '{ResultType}', " +
51
51
"Result: '{Result}', " +
@@ -55,8 +55,8 @@ public static partial void PipelineExecuting(
55
55
public static partial void PipelineExecuted (
56
56
this ILogger logger ,
57
57
LogLevel logLevel ,
58
- string builderName ,
59
- string builderInstance ,
58
+ string pipelineName ,
59
+ string pipelineInstance ,
60
60
string ? operationKey ,
61
61
string resultType ,
62
62
object ? result ,
@@ -67,7 +67,7 @@ public static partial void PipelineExecuted(
67
67
[ LoggerMessage (
68
68
EventId = 3 ,
69
69
Message = "Execution attempt. " +
70
- "Source: '{BuilderName }/{BuilderInstance }/{StrategyName}', " +
70
+ "Source: '{PipelineName }/{PipelineInstance }/{StrategyName}', " +
71
71
"Operation Key: '{OperationKey}', " +
72
72
"Result: '{Result}', " +
73
73
"Handled: '{Handled}', " +
@@ -78,8 +78,8 @@ public static partial void PipelineExecuted(
78
78
public static partial void ExecutionAttempt (
79
79
this ILogger logger ,
80
80
LogLevel level ,
81
- string builderName ,
82
- string builderInstance ,
81
+ string pipelineName ,
82
+ string pipelineInstance ,
83
83
string strategyName ,
84
84
string ? operationKey ,
85
85
object ? result ,
0 commit comments