1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-18 04:58:51 +02:00

Add missing parameter logging.

This commit is contained in:
David Steele 2020-05-28 09:19:12 -04:00
parent 3b5f76b434
commit 28676e1707

View File

@ -135,7 +135,9 @@ IoRead *
ioHandleReadNew(const String *name, int handle, TimeMSec timeout) ioHandleReadNew(const String *name, int handle, TimeMSec timeout)
{ {
FUNCTION_LOG_BEGIN(logLevelTrace); FUNCTION_LOG_BEGIN(logLevelTrace);
FUNCTION_LOG_PARAM(STRING, name);
FUNCTION_LOG_PARAM(INT, handle); FUNCTION_LOG_PARAM(INT, handle);
FUNCTION_LOG_PARAM(TIME_MSEC, timeout);
FUNCTION_LOG_END(); FUNCTION_LOG_END();
ASSERT(handle != -1); ASSERT(handle != -1);