diff --git a/src/browser.hxx b/src/browser.hxx index 69a76f0..8a94ccf 100644 --- a/src/browser.hxx +++ b/src/browser.hxx @@ -881,7 +881,7 @@ class Browser: public QMainWindow, protected Ui::Browser { urls.removeAll(""); urls.removeDuplicates(); if (_bookmarkfile.writeable()) { - LOG<<"write to bookmark file"; + LOG<<"write to bookmark file"<<_bookmarkfile.name(); _bookmarkfile.write(urls); } else if (_settings()) { LOG<<"write to settings"; @@ -911,7 +911,7 @@ class Browser: public QMainWindow, protected Ui::Browser { TRC; LOG<<"Loading Bookmarks ..."; QStringList urls; if (_bookmarkfile.readable()) { - LOG<<"load from file"; + LOG<<"load from file"<<_bookmarkfile.name(); urls = _bookmarkfile.read(); } else if (_settings()) { LOG<<"load from settings"; diff --git a/src/main.cxx b/src/main.cxx index 1b48931..e50b651 100644 --- a/src/main.cxx +++ b/src/main.cxx @@ -248,14 +248,15 @@ int main(int argv, char** argc) try { <<"Hostname"<