diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-08-15 03:40:57 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-08-15 03:40:57 +0200 |
commit | 7fa53eae7fffcb517f56c96a9f2f67db5ef0d643 (patch) | |
tree | 42bc1904c8f8991a6f318339799ca0ce54991271 | |
parent | 9770f52da6cb4445344c3e3641376d36a2c996a9 (diff) | |
download | nextcloud-server-7fa53eae7fffcb517f56c96a9f2f67db5ef0d643.tar.gz nextcloud-server-7fa53eae7fffcb517f56c96a9f2f67db5ef0d643.zip |
Make it clear that log message is about the XCache opcode cache.
-rwxr-xr-x | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index e9360b44f9e..525a8d9d5d3 100755 --- a/lib/util.php +++ b/lib/util.php @@ -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); } |