mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
15 lines
324 B
PHP
15 lines
324 B
PHP
<?php
|
|
|
|
// crmv@176614
|
|
require_once('include/utils/VTEProperties.php');
|
|
$VP = VTEProperties::getInstance();
|
|
|
|
$logCfg = $VP->get('performance.log_config');
|
|
if ($logCfg && is_array($logCfg)) {
|
|
foreach ($logCfg as $logname => &$cfg) {
|
|
unset($cfg['filepath']);
|
|
}
|
|
unset($cfg);
|
|
$VP->set('performance.log_config', $logCfg);
|
|
}
|