diff options
Diffstat (limited to 'src/VBox/Runtime/common/log/log.cpp')
-rw-r--r-- | src/VBox/Runtime/common/log/log.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/VBox/Runtime/common/log/log.cpp b/src/VBox/Runtime/common/log/log.cpp index f2e89d2f184..ceb7d800b7d 100644 --- a/src/VBox/Runtime/common/log/log.cpp +++ b/src/VBox/Runtime/common/log/log.cpp @@ -2608,6 +2608,22 @@ RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list args) } RT_EXPORT_SYMBOL(RTLogPrintfV); + +/** + * Dumper vprintf-like function outputting to a logger. + * + * @param pvUser Pointer to the logger instance to use, NULL for + * default instance. + * @param pszFormat Format string. + * @param va Format arguments. + */ +RTDECL(void) RTLogDumpPrintfV(void *pvUser, const char *pszFormat, va_list va) +{ + RTLogLoggerV((PRTLOGGER)pvUser, pszFormat, va); +} +RT_EXPORT_SYMBOL(RTLogDumpPrintfV); + + #ifdef IN_RING3 /** |