Closed ThaDafinser closed 8 years ago
https://scn.sap.com/thread/1822094
To change the trace dir, i've done this ugly thing in the PHP5 extension
trace
$cwd = getcwd(); chdir('../my-log-dir'); try { $conn = new sapnwrfc($options); } finally { chdir($cwd); }
Maybe adding the RfcResetTraceDir makes sense?
RfcResetTraceDir
Yes, I plan to add methods for setting the trace dir and level. It is on my TODO list :smile:
https://scn.sap.com/thread/1822094
To change the
trace
dir, i've done this ugly thing in the PHP5 extensionMaybe adding the
RfcResetTraceDir
makes sense?