Your ROOT_URL in app.ini is https://code.exacti.com.br/ but you are visiting https://git.exacti.com.br/ExacTI/phacil-framework/src/commit/894ef11d57e584d1e131e98a0f76b75adafb9d2c/system/engine/log.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework

17 lines
376 B

<?php
final class Log {
private $filename;
public function __construct($filename) {
$this->filename = fopen(DIR_LOGS . $filename, 'a');
}
public function write($message) {
fwrite($this->filename, date('Y-m-d G:i:s') . ' - ' . print_r($message, true)." | ".$_SERVER['REQUEST_URI'] . PHP_EOL);
}
public function __destruct() {
fclose($this->filename);
}
}
?>