@@ -18,107 +18,107 @@ internal interface IDatadogLogger
1818
1919 bool IsEnabled ( LogEventLevel level ) ;
2020
21- void Debug ( string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
21+ void Debug ( string messageTemplate ) ;
2222
23- void Debug < T > ( string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
23+ void Debug < T > ( string messageTemplate , T property ) ;
2424
25- void Debug < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
25+ void Debug < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 ) ;
2626
27- void Debug < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
27+ void Debug < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
2828
29- void Debug < T0 , T1 , T2 , T3 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 , T3 property3 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
29+ void Debug < T0 , T1 , T2 , T3 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 , T3 property3 ) ;
3030
31- void Debug ( string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
31+ void Debug ( string messageTemplate , object ? [ ] args ) ;
3232
33- void Debug ( Exception ? exception , string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
33+ void Debug ( Exception ? exception , string messageTemplate ) ;
3434
35- void Debug < T > ( Exception ? exception , string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
35+ void Debug < T > ( Exception ? exception , string messageTemplate , T property ) ;
3636
37- void Debug < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
37+ void Debug < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 ) ;
3838
39- void Debug < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
39+ void Debug < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
4040
41- void Debug ( Exception ? exception , string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
41+ void Debug ( Exception ? exception , string messageTemplate , object ? [ ] args ) ;
4242
43- void Information ( string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
43+ void Information ( string messageTemplate ) ;
4444
45- void Information < T > ( string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
45+ void Information < T > ( string messageTemplate , T property ) ;
4646
47- void Information < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
47+ void Information < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 ) ;
4848
49- void Information < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
49+ void Information < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
5050
51- void Information ( string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
51+ void Information ( string messageTemplate , object ? [ ] args ) ;
5252
53- void Information ( Exception ? exception , string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
53+ void Information ( Exception ? exception , string messageTemplate ) ;
5454
55- void Information < T > ( Exception ? exception , string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
55+ void Information < T > ( Exception ? exception , string messageTemplate , T property ) ;
5656
57- void Information < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
57+ void Information < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 ) ;
5858
59- void Information < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
59+ void Information < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
6060
61- void Information ( Exception ? exception , string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
61+ void Information ( Exception ? exception , string messageTemplate , object ? [ ] args ) ;
6262
63- void Warning ( string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
63+ void Warning ( string messageTemplate ) ;
6464
65- void Warning < T > ( string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
65+ void Warning < T > ( string messageTemplate , T property ) ;
6666
67- void Warning < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
67+ void Warning < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 ) ;
6868
69- void Warning < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
69+ void Warning < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
7070
71- void Warning ( string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
71+ void Warning ( string messageTemplate , object ? [ ] args ) ;
7272
73- void Warning ( Exception ? exception , string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
73+ void Warning ( Exception ? exception , string messageTemplate ) ;
7474
75- void Warning < T > ( Exception ? exception , string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
75+ void Warning < T > ( Exception ? exception , string messageTemplate , T property ) ;
7676
77- void Warning < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
77+ void Warning < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 ) ;
7878
79- void Warning < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
79+ void Warning < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
8080
81- void Warning ( Exception ? exception , string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
81+ void Warning ( Exception ? exception , string messageTemplate , object ? [ ] args ) ;
8282
83- void Error ( string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
83+ void Error ( string messageTemplate ) ;
8484
85- void Error < T > ( string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
85+ void Error < T > ( string messageTemplate , T property ) ;
8686
87- void Error < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
87+ void Error < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 ) ;
8888
89- void Error < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
89+ void Error < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
9090
91- void Error ( string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
91+ void Error ( string messageTemplate , object ? [ ] args ) ;
9292
93- void Error ( Exception ? exception , string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
93+ void Error ( Exception ? exception , string messageTemplate ) ;
9494
95- void Error < T > ( Exception ? exception , string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
95+ void Error < T > ( Exception ? exception , string messageTemplate , T property ) ;
9696
97- void Error < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
97+ void Error < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 ) ;
9898
99- void Error < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
99+ void Error < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
100100
101- void Error ( Exception ? exception , string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
101+ void Error ( Exception ? exception , string messageTemplate , object ? [ ] args ) ;
102102
103- void ErrorSkipTelemetry ( string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
103+ void ErrorSkipTelemetry ( string messageTemplate ) ;
104104
105- void ErrorSkipTelemetry < T > ( string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
105+ void ErrorSkipTelemetry < T > ( string messageTemplate , T property ) ;
106106
107- void ErrorSkipTelemetry < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
107+ void ErrorSkipTelemetry < T0 , T1 > ( string messageTemplate , T0 property0 , T1 property1 ) ;
108108
109- void ErrorSkipTelemetry < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
109+ void ErrorSkipTelemetry < T0 , T1 , T2 > ( string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
110110
111- void ErrorSkipTelemetry ( string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
111+ void ErrorSkipTelemetry ( string messageTemplate , object ? [ ] args ) ;
112112
113- void ErrorSkipTelemetry ( Exception ? exception , string messageTemplate , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
113+ void ErrorSkipTelemetry ( Exception ? exception , string messageTemplate ) ;
114114
115- void ErrorSkipTelemetry < T > ( Exception ? exception , string messageTemplate , T property , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
115+ void ErrorSkipTelemetry < T > ( Exception ? exception , string messageTemplate , T property ) ;
116116
117- void ErrorSkipTelemetry < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
117+ void ErrorSkipTelemetry < T0 , T1 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 ) ;
118118
119- void ErrorSkipTelemetry < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
119+ void ErrorSkipTelemetry < T0 , T1 , T2 > ( Exception ? exception , string messageTemplate , T0 property0 , T1 property1 , T2 property2 ) ;
120120
121- void ErrorSkipTelemetry ( Exception ? exception , string messageTemplate , object ? [ ] args , [ CallerLineNumber ] int sourceLine = 0 , [ CallerFilePath ] string sourceFile = "" ) ;
121+ void ErrorSkipTelemetry ( Exception ? exception , string messageTemplate , object ? [ ] args ) ;
122122
123123 void CloseAndFlush ( ) ;
124124 }
0 commit comments