Skip to content

Commit

Permalink
[FLINK-22213][filesystem] Do not log factory hashcodes
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Apr 14, 2021
1 parent 6434fc5 commit f2f2bef
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,10 @@ private static void addAllFactoriesToList(
try {
FileSystemFactory factory = iter.next();
list.add(factory);
LOG.debug("Added file system {}:{}", factory.getScheme(), factory.toString());
LOG.debug(
"Added file system {}:{}",
factory.getScheme(),
factory.getClass().getSimpleName());
} catch (Throwable t) {
// catching Throwable here to handle various forms of class loading
// and initialization errors
Expand Down

0 comments on commit f2f2bef

Please sign in to comment.