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