diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-04 23:44:01 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-04 23:44:01 +0100 |
commit | 2cb66327525472d1b5f287b20d81554c84c2ddbe (patch) | |
tree | 12c26883820f26bf9d03ac9f7e1566c0d94e70a1 | |
parent | ac50c2f97322cb8ac2631d092327e91758aa75de (diff) | |
download | nextcloud-server-2cb66327525472d1b5f287b20d81554c84c2ddbe.tar.gz nextcloud-server-2cb66327525472d1b5f287b20d81554c84c2ddbe.zip |
enhanced log message
-rw-r--r-- | lib/filestorage/local.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index 86cc910d2e1..ca68d6b8702 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -190,7 +190,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return (float)exec('stat -c %s ' . escapeshellarg($fullPath)); } } else { - OC_Log::write('core', 'Unknown OS: '.$name, OC_Log::ERROR); + OC_Log::write('core', 'Unable to determine file size of "'.$fullPath.'". Unknown OS: '.$name, OC_Log::ERROR); } return 0; |