Changeset 13125

Show
Ignore:
Timestamp:
12/28/11 07:53:37 (1 year ago)
Author:
mbrevda
Message:

fix dbug log file location

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.10/libfreepbx.install.php

    r13119 r13125  
    13211321 
    13221322  // FPBXDBUGFILE 
    1323   $set['value'] = $amp_conf['ASTLOGDIR'] . '/freepbx_debug.log'; 
     1323  $set['value'] = $amp_conf['ASTLOGDIR'] . '/freepbx_dbug'; 
    13241324  $set['options'] = ''; 
    13251325  $set['name'] = 'Debug File'; 
  • freepbx/branches/2.10/upgrades/2.10.0beta2/migration.php

    r13053 r13125  
    3333//move freepbx debug log 
    3434if ($freepbx_conf->conf_setting_exists('FPBXDBUGFILE')) { 
    35   $freepbx_conf->set_conf_values(array('FPBXDBUGFILE' => '/var/log/asterisk/freepbx_debug'), true); 
     35  $freepbx_conf->set_conf_values(array('FPBXDBUGFILE' => $amp_conf['ASTLOGDIR'] . '/freepbx_dbug'), true); 
    3636} 
    3737