forked from verdnatura/hedera-web
18 lines
316 B
PHP
18 lines
316 B
PHP
<?php
|
|
|
|
namespace Vn\Hedera;
|
|
|
|
if (!defined (__NAMESPACE__.'\_DEVELOPER_MODE'))
|
|
{
|
|
define (__NAMESPACE__.'\_CONFIG_DIR', '/etc');
|
|
define (__NAMESPACE__.'\_LOG_DIR', '/var/log');
|
|
}
|
|
|
|
$conf = NULL;
|
|
|
|
ini_set ('log_errors', TRUE);
|
|
ini_set ('error_log', 'syslog');
|
|
//ini_set ('error_log', _LOG_DIR .'/hedera-web.log');
|
|
|
|
?>
|