Decreased logging verbosity for smartcard emulation

This commit is contained in:
Armin Novak 2022-10-10 11:17:57 +02:00 committed by akallabeth
parent 1d71ace487
commit 19f44a5734

View File

@ -1446,7 +1446,8 @@ BOOL vgids_init(vgidsContext* ctx, const char* cert, const char* privateKey, con
/* Check params */
if (!cert || !privateKey || !pin)
{
WLog_ERR(TAG, "Passed invalid NULL pointer argument");
WLog_DBG(TAG, "Passed invalid NULL argument: cert=%p, privateKey=%p, pin=%p", cert,
privateKey, pin);
goto init_failed;
}