From: Oliver Kurth Date: Fri, 15 Sep 2017 18:23:28 +0000 (-0700) Subject: lib/log: Remove GuestLog_* declarations from log.h X-Git-Tag: stable-10.2.0~313 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3787bcd2f4a9855e4776d772b82a86e8b389bc34;p=thirdparty%2Fopen-vm-tools.git lib/log: Remove GuestLog_* declarations from log.h --- diff --git a/open-vm-tools/lib/include/log.h b/open-vm-tools/lib/include/log.h index 6d055ae62..e916c86a8 100644 --- a/open-vm-tools/lib/include/log.h +++ b/open-vm-tools/lib/include/log.h @@ -1,5 +1,5 @@ /********************************************************* - * Copyright (C) 1998-2016 VMware, Inc. All rights reserved. + * Copyright (C) 1998-2017 VMware, Inc. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -338,13 +338,17 @@ Log_InitWithStdioSimple(const char *appPrefix, void Log_Exit(void); Bool Log_Outputting(void); + Bool Log_IsLevelOutputting(int level); const char *Log_GetFileName(void); + const char *Log_GetOutputFileName(LogOutput *output); void Log_SkipLocking(Bool skipLocking); + void Log_DisableThrottling(void); + uint32 Log_MaxLineLength(void); size_t Log_MakeTimeString(Bool millisec, @@ -358,12 +362,6 @@ Bool Log_BoundNumFiles(struct LogOutput *output, LogOwnerFunc *func, void *userData); -/* Logging that uses the custom guest throttling configuration. */ -void GuestLog_Init(void); -void GuestLog_Log(const char *fmt, - ...) PRINTF_DECL(1, 2); - - #if defined(VMX86_SERVER) #define LOG_KEEPOLD 6 // Old log files to keep around; ESX value #else