Clearer warning message on non-existing file

This commit is contained in:
Mikael Nordfeldth 2015-04-16 00:22:09 +02:00
parent 0337a7b866
commit a55d1df585
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ function setFilehashOnLocalFiles()
$file->filehash = hash_file(File::FILEHASH_ALG, $file->getPath());
$file->update($orig);
} catch (FileNotFoundException $e) {
echo "\n WARNING: file ID {$file->id} does not exist on path '{$e->path}'. Clean up the file table?";
echo "\n WARNING: file ID {$file->id} does not exist on path '{$e->path}'. If there is no file system error, run: php scripts/clean_file_table.php";
}
}
}