Zoho CRM PHP SDK v2 - Concept Issues

Zoho CRM PHP SDK v2 - Concept Issues

Hi,

It seems that although you are able to provide a applicationLogFilePath configuration parameter when initializing ZCRMRestClient, you are unable to do anything about OAuthLogger, nor are you able to completely turn off OAuth logging in the SDK. Here's a snippet from zcrmsdk\oauth\utility:
public static function writeToFile($msg)
{
$filePointer = fopen(dirname(__FILE__) . "/OAuth.log", "a");
fwrite($filePointer, sprintf("%s %s\n", date("Y-m-d H:i:s"), $msg));
fclose($filePointer);
}
As you can see, there is no way for us to change the path of the log file for OAuth nor disable it. This presents with some concerns on file systems where ZOHO CRM SDK directory is not writable by the FPM process.

If there is a workaround for this other than write-enabling the vendor folder to be writable, please share with me!

Thank you.