Make it clear that log message is about the XCache opcode cache.

This commit is contained in:
Andreas Fischer 2013-08-15 03:40:57 +02:00
parent 9770f52da6
commit 7fa53eae7f
1 changed files with 1 additions and 1 deletions

View File

@ -870,7 +870,7 @@ class OC_Util {
// XCache
if (function_exists('xcache_clear_cache')) {
if (ini_get('xcache.admin.enable_auth')) {
OC_Log::write('core', 'XCache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN);
OC_Log::write('core', 'XCache opcode cache will not be cleared because "xcache.admin.enable_auth" is enabled in php.ini.', \OC_Log::WARN);
} else {
xcache_clear_cache(XC_TYPE_PHP, 0);
}