Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
1.10.0, 1.11.0
Description
Currently, the following statement is used during FS instantiation
LOG.debug("Added file system {}:{}", factory.getScheme(), factory.getClass().getName());
but with the introduction of pluggable filesystems, the class name will always be PluginFileSystemFactory and does not give a notion which FS is used anymore.
A fix could be to replace the class name usage with toString and implement it within the PluginFileSystemFactory.