@@ -271,10 +271,10 @@ class Logger : public std::enable_shared_from_this<Logger>
271
271
/* *
272
272
* Add a debug log point to the logger.
273
273
*
274
- * @tparam Args Variadic template arguments .
274
+ * @tparam ParameterTypes Variadic format parameter types .
275
275
*
276
276
* @param format The format string for the log point.
277
- * @param args The variadic list of arguments to augment the format string with.
277
+ * @param parameters The variadic list of arguments to augment the format string with.
278
278
*/
279
279
template <typename ... ParameterTypes>
280
280
inline void
@@ -289,11 +289,11 @@ class Logger : public std::enable_shared_from_this<Logger>
289
289
/* *
290
290
* Add a debug log point to the logger with trace information.
291
291
*
292
- * @tparam Args Variadic template arguments .
292
+ * @tparam ParameterTypes Variadic format parameter types .
293
293
*
294
294
* @param trace The trace information for the log point.
295
295
* @param format The format string for the log point.
296
- * @param args The variadic list of arguments to augment the format string with.
296
+ * @param parameters The variadic list of arguments to augment the format string with.
297
297
*/
298
298
template <typename ... ParameterTypes>
299
299
inline void debug (
@@ -311,10 +311,10 @@ class Logger : public std::enable_shared_from_this<Logger>
311
311
/* *
312
312
* Add an informational log point to the logger.
313
313
*
314
- * @tparam Args Variadic template arguments .
314
+ * @tparam ParameterTypes Variadic format parameter types .
315
315
*
316
316
* @param format The format string for the log point.
317
- * @param args The variadic list of arguments to augment the format string with.
317
+ * @param parameters The variadic list of arguments to augment the format string with.
318
318
*/
319
319
template <typename ... ParameterTypes>
320
320
inline void
@@ -329,11 +329,11 @@ class Logger : public std::enable_shared_from_this<Logger>
329
329
/* *
330
330
* Add an informational log point to the logger with trace information.
331
331
*
332
- * @tparam Args Variadic template arguments .
332
+ * @tparam ParameterTypes Variadic format parameter types .
333
333
*
334
334
* @param trace The trace information for the log point.
335
335
* @param format The format string for the log point.
336
- * @param args The variadic list of arguments to augment the format string with.
336
+ * @param parameters The variadic list of arguments to augment the format string with.
337
337
*/
338
338
template <typename ... ParameterTypes>
339
339
inline void info (
@@ -351,10 +351,10 @@ class Logger : public std::enable_shared_from_this<Logger>
351
351
/* *
352
352
* Add a warning log point to the logger.
353
353
*
354
- * @tparam Args Variadic template arguments .
354
+ * @tparam ParameterTypes Variadic format parameter types .
355
355
*
356
356
* @param format The format string for the log point.
357
- * @param args The variadic list of arguments to augment the format string with.
357
+ * @param parameters The variadic list of arguments to augment the format string with.
358
358
*/
359
359
template <typename ... ParameterTypes>
360
360
inline void
@@ -369,11 +369,11 @@ class Logger : public std::enable_shared_from_this<Logger>
369
369
/* *
370
370
* Add a warning log point to the logger with trace information.
371
371
*
372
- * @tparam Args Variadic template arguments .
372
+ * @tparam ParameterTypes Variadic format parameter types .
373
373
*
374
374
* @param trace The trace information for the log point.
375
375
* @param format The format string for the log point.
376
- * @param args The variadic list of arguments to augment the format string with.
376
+ * @param parameters The variadic list of arguments to augment the format string with.
377
377
*/
378
378
template <typename ... ParameterTypes>
379
379
inline void warn (
@@ -391,10 +391,10 @@ class Logger : public std::enable_shared_from_this<Logger>
391
391
/* *
392
392
* Add an error log point to the logger.
393
393
*
394
- * @tparam Args Variadic template arguments .
394
+ * @tparam ParameterTypes Variadic format parameter types .
395
395
*
396
396
* @param format The format string for the log point.
397
- * @param args The variadic list of arguments to augment the format string with.
397
+ * @param parameters The variadic list of arguments to augment the format string with.
398
398
*/
399
399
template <typename ... ParameterTypes>
400
400
inline void
@@ -409,11 +409,11 @@ class Logger : public std::enable_shared_from_this<Logger>
409
409
/* *
410
410
* Add an error log point to the logger with trace information.
411
411
*
412
- * @tparam Args Variadic template arguments .
412
+ * @tparam ParameterTypes Variadic format parameter types .
413
413
*
414
414
* @param trace The trace information for the log point.
415
415
* @param format The format string for the log point.
416
- * @param args The variadic list of arguments to augment the format string with.
416
+ * @param parameters The variadic list of arguments to augment the format string with.
417
417
*/
418
418
template <typename ... ParameterTypes>
419
419
inline void error (
0 commit comments