Your IP : 18.119.235.79


Current Path : /proc/self/root/home/sudancam/.trash/shop.1/system/library/googleshopping/
Upload File :
Current File : //proc/self/root/home/sudancam/.trash/shop.1/system/library/googleshopping/log.php

<?php

namespace googleshopping;

/**
* Log class
*/
class Log {
    private $handle;
    
    /**
     * Constructor
     *
     * @param   string  $filename
    */
    public function __construct($filename, $max_size = 8388608) {
        $file = DIR_LOGS . $filename;

        clearstatcache(true);

        if ((!file_exists($file) && !is_writable(DIR_LOGS)) || (file_exists($file) && !is_writable($file))) {
            // Do nothing, as we have no permissions
            return;
        }

        if (file_exists($file) && filesize($file) >= $max_size) {
            $mode = 'wb';
        } else {
            $mode = 'ab';
        }

        $this->handle = @fopen(DIR_LOGS . $filename, $mode);
    }
    
    /**
     * 
     *
     * @param   string  $message
     */
    public function write($message) {
        if (is_resource($this->handle)) {
            fwrite($this->handle, date('Y-m-d G:i:s') . ' - ' . print_r($message, true) . "\n");
        }
    }
    
    /**
     * 
     *
     */
    public function __destruct() {
        if (is_resource($this->handle)) {
            fclose($this->handle);
        }
    }
}