SFTP/Stream: log when constructor is called

This commit is contained in:
terrafrost 2013-11-20 09:11:14 -06:00
parent f3c71faee0
commit 478dd38e8f

View File

@ -134,6 +134,10 @@ class Net_SFTP_Stream {
*/
function Net_SFTP_Stream()
{
if (defined('NET_SFTP_STREAM_LOGGING')) {
echo "__construct()\r\n";
}
if (!class_exists('Net_SFTP')) {
require_once('Net/SFTP.php');
}