DIR:/home/dna1981/www/logomasters/GE/php/authorize_net_sdk_php/lib/net/authorize/util/ |
Current File : /home/dna1981/www/logomasters/GE/php/authorize_net_sdk_php/lib/net/authorize/util/LogFactory.php |
<?php namespace net\authorize\util; class LogFactory { private static $logger = NULL; public static function getLog($classType){ if(NULL == self::$logger){ self::$logger = new Log(); if(defined('AUTHORIZENET_LOG_FILE')){ self::$logger->setLogFile(AUTHORIZENET_LOG_FILE); } } return self::$logger; } } ?> |