APACHE 启动出来这个错 未见过,不解中

APACHE 启动出来这个错 未见过,不解中

APACHE 启动出来这个错

APACHE 启动出来这个错
Syntax error on line 100 of /usr/local/apache/conf/extra/httpd-vhosts.conf:
CustomLog takes two or three arguments, a file name, a custom log format string or format name, and an optional "env=" clause (see docs)
没能找到原因,特来请教各位

如果把虚拟机配置CustomLog logs/xiaoxu.error_log这一行去掉就OK!!不解中!!      
你的/usr/local/apache/conf/extra/httpd-vhosts.conf文件的第100句前后是什么?将这几句都挂出来看看。      
100 句就是CustomLog logs/xiaoxu.error_log
全部是
<VirtualHost *:80>
    ServerAdmin xjtdy888@163.com
    DocumentRoot /home/document/cnscn
    ServerName aaa.localhost
    ErrorLog logs/aaa.localhost.error_log
    CustomLog logs/aaa.localhost.error_log
</VirtualHost>

有关httpd.conf的配置是
<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    CustomLog logs/access_log common
</IfModule>      
查一下/var/log下的aaa.localhost.error_log这个文件存在不存在,或者是所有者或权限不对。