diff --git a/source/net/filebot/platform/gnome/NativeGVFS.java b/source/net/filebot/platform/gnome/NativeGVFS.java index 4d296677..c593fc85 100644 --- a/source/net/filebot/platform/gnome/NativeGVFS.java +++ b/source/net/filebot/platform/gnome/NativeGVFS.java @@ -28,4 +28,9 @@ public class NativeGVFS implements GVFS { } } + @Override + public String toString() { + return String.format("%s [%s]", getClass().getSimpleName(), lib_gio); + } + } diff --git a/source/net/filebot/platform/gnome/PlatformGVFS.java b/source/net/filebot/platform/gnome/PlatformGVFS.java index f50da760..5504ebf1 100644 --- a/source/net/filebot/platform/gnome/PlatformGVFS.java +++ b/source/net/filebot/platform/gnome/PlatformGVFS.java @@ -20,6 +20,11 @@ public class PlatformGVFS implements GVFS { return Protocol.forName(uri.getScheme()).getFile(gvfs, uri); } + @Override + public String toString() { + return String.format("%s [%s]", getClass().getSimpleName(), gvfs); + } + public static enum Protocol { FILE {