Dateimanagement: Fileystem-Backend: aussagekräftigere Fehlermeldung
[kivitendo-erp.git] / SL / File / Backend / Filesystem.pm
index ec67d74..9daef35 100644 (file)
@@ -109,7 +109,9 @@ sub get_filepath {
   my ($self, %params) = @_;
   die "no dbfile" unless $params{dbfile};
   my $path = $self->_filesystem_path($params{dbfile},$params{version});
-  die "no file in backend get_filepath" if !-f $path;
+
+  die "No file found at $path. Expected: $params{dbfile}{file_name}, file.id: $params{dbfile}{id}" if !-f $path;
+
   return $path;
 }