We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcbe938 commit c937601Copy full SHA for c937601
src/main/java/org/jabref/preferences/JabRefPreferences.java
@@ -1148,6 +1148,7 @@ public void exportPreferences(String filename) throws JabRefException {
1148
}
1149
1150
public void exportPreferences(Path file) throws JabRefException {
1151
+ LOGGER.debug(file.toAbsolutePath().toString());
1152
try (OutputStream os = Files.newOutputStream(file)) {
1153
prefs.exportSubtree(os);
1154
} catch (BackingStoreException | IOException ex) {
0 commit comments