@@ -42,15 +42,15 @@ class Logger
42
42
/* *
43
43
* Emit a Log Record object
44
44
*
45
- * @param log_record
45
+ * @param log_record Log record
46
46
*/
47
47
virtual void EmitLogRecord (nostd::unique_ptr<LogRecord> &&log_record) noexcept = 0;
48
48
49
49
/* *
50
50
* Emit a Log Record object with arguments
51
51
*
52
52
* @param log_record Log record
53
- * @tparam args Arguments which can be used to set data of log record by type.
53
+ * @param args Arguments which can be used to set data of log record by type.
54
54
* Severity -> severity, severity_text
55
55
* string_view -> body
56
56
* AttributeValue -> body
@@ -96,7 +96,7 @@ class Logger
96
96
/* *
97
97
* Emit a Log Record object with arguments
98
98
*
99
- * @tparam args Arguments which can be used to set data of log record by type.
99
+ * @param args Arguments which can be used to set data of log record by type.
100
100
* Severity -> severity, severity_text
101
101
* string_view -> body
102
102
* AttributeValue -> body
@@ -120,7 +120,7 @@ class Logger
120
120
121
121
/* *
122
122
* Writes a log with a severity of trace.
123
- * @tparam args Arguments which can be used to set data of log record by type.
123
+ * @param args Arguments which can be used to set data of log record by type.
124
124
* string_view -> body
125
125
* AttributeValue -> body
126
126
* SpanContext -> span_id,trace_id and trace_flags
@@ -144,7 +144,7 @@ class Logger
144
144
145
145
/* *
146
146
* Writes a log with a severity of debug.
147
- * @tparam args Arguments which can be used to set data of log record by type.
147
+ * @param args Arguments which can be used to set data of log record by type.
148
148
* string_view -> body
149
149
* AttributeValue -> body
150
150
* SpanContext -> span_id,trace_id and trace_flags
@@ -168,7 +168,7 @@ class Logger
168
168
169
169
/* *
170
170
* Writes a log with a severity of info.
171
- * @tparam args Arguments which can be used to set data of log record by type.
171
+ * @param args Arguments which can be used to set data of log record by type.
172
172
* string_view -> body
173
173
* AttributeValue -> body
174
174
* SpanContext -> span_id,trace_id and trace_flags
@@ -192,7 +192,7 @@ class Logger
192
192
193
193
/* *
194
194
* Writes a log with a severity of warn.
195
- * @tparam args Arguments which can be used to set data of log record by type.
195
+ * @param args Arguments which can be used to set data of log record by type.
196
196
* string_view -> body
197
197
* AttributeValue -> body
198
198
* SpanContext -> span_id,trace_id and trace_flags
@@ -216,7 +216,7 @@ class Logger
216
216
217
217
/* *
218
218
* Writes a log with a severity of error.
219
- * @tparam args Arguments which can be used to set data of log record by type.
219
+ * @param args Arguments which can be used to set data of log record by type.
220
220
* string_view -> body
221
221
* AttributeValue -> body
222
222
* SpanContext -> span_id,trace_id and trace_flags
@@ -240,7 +240,7 @@ class Logger
240
240
241
241
/* *
242
242
* Writes a log with a severity of fatal.
243
- * @tparam args Arguments which can be used to set data of log record by type.
243
+ * @param args Arguments which can be used to set data of log record by type.
244
244
* string_view -> body
245
245
* AttributeValue -> body
246
246
* SpanContext -> span_id,trace_id and trace_flags
0 commit comments