去掉调试常量

feat/task1-c-wallet
gongfuxiang 2018-12-30 00:53:01 +08:00
parent 3370f9e406
commit af84979465
2 changed files with 2 additions and 8 deletions

View File

@ -19,9 +19,9 @@ return [
// 应用地址
'app_host' => '',
// 应用调试模式
'app_debug' => defined('APP_DEBUG') ? APP_DEBUG : false,
'app_debug' => false,
// 应用Trace
'app_trace' => defined('APP_TRACE') ? APP_TRACE : false,
'app_trace' => false,
// 是否支持多模块
'app_multi_module' => true,
// 入口自动绑定模块

View File

@ -39,12 +39,6 @@ define('__MY_VIEW_URL__', substr(__MY_URL__, 0, -1).$request_url);
// 系统版本
define('APPLICATION_VERSION', 'v1.2.0');
// 调试模式 建议开发阶段开启 部署阶段注释或者设为false
define('APP_DEBUG', false);
// 应用Trace 建议开发阶段开启 部署阶段注释或者设为false
define('APP_TRACE', false);
// 定义系统目录分隔符
define('DS', '/');