diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-06-01 15:15:05 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-06-01 15:15:05 -0400 |
commit | cc84bd2993b4f5049076dc4d12d6dada9d1a4f85 (patch) | |
tree | 5a8254fc8700b7db806bc4d0e511a34d9da42e10 /lib/filecache.php | |
parent | 66f1957e3b82400a04bbd20c5b5ce3ae9d4334c8 (diff) | |
download | nextcloud-server-cc84bd2993b4f5049076dc4d12d6dada9d1a4f85.tar.gz nextcloud-server-cc84bd2993b4f5049076dc4d12d6dada9d1a4f85.zip |
Fix typo in log message
Diffstat (limited to 'lib/filecache.php')
-rw-r--r-- | lib/filecache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filecache.php b/lib/filecache.php index a94349e19cb..a29e29928a8 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -419,7 +419,7 @@ class OC_FileCache{ } return $result; }else{ - OC_Log::write('files','getChached(): file not found in cache ('.$path.')',OC_Log::DEBUG); + OC_Log::write('files','getCached(): file not found in cache ('.$path.')',OC_Log::DEBUG); if(isset(self::$savedData[$path])){ return self::$savedData[$path]; }else{ |