Zhiqim Manager(知启蒙管理台)是知启蒙框架中最核心的基础组件,大部分后台组件和产品都依赖该组件。因为管理台提供了核心的系统配置、菜单、操作员、部门、角色等权限功能,以及6种皮肤样式可供选择

森中灵 最后提交于3月前 修复切换frame模式时未情况includeUrl
logging.xml1KB
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE zhiqim-config PUBLIC "-//ZHIQIM //DTD Zhiqim-Config Configuration 8.0.0//EN" "https://zhiqim.org/xmldtds/zhiqim_config_8_0_0.dtd">
<zhiqim-config>

    <group id="logging" desc="日志配置">
        <item key="logging.info" value="debug-info" type="protected" desc="信息日志配置" />
        <item key="logging.error" value="error-fatal" type="protected" desc="错误日志配置" />
    </group>

    <group id="logging.info" desc="信息日志配置">
        <item key="console.out" value="true" type="protected" desc="是否输出到控制台" />
        <item key="file.out" value="true" type="protected" desc="是否输出到文件" />
        <item key="file.path" value="./logs/info.log" type="protected" desc="输出到文件路径" />
    </group>

    <group id="logging.error" desc="错误日志配置">
        <item key="console.out" value="true" type="protected" desc="是否输出到控制台" />
        <item key="file.out" value="true" type="protected" desc="是否输出到文件" />
        <item key="file.path" value="./logs/error.log" type="protected" desc="输出到文件路径" />
    </group>

</zhiqim-config>