From 2a49d4a1aaf1d1fb644d3e4586989c696f657bcc Mon Sep 17 00:00:00 2001 From: Marvin W Date: Mon, 3 Apr 2017 15:09:30 +0200 Subject: Add --print-xmpp flag to log details --- libdino/src/application.vala | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'libdino/src/application.vala') diff --git a/libdino/src/application.vala b/libdino/src/application.vala index 99cef929..b28bb69b 100644 --- a/libdino/src/application.vala +++ b/libdino/src/application.vala @@ -8,16 +8,18 @@ public class Dino.Application : Gtk.Application { public StreamInteractor stream_interaction; public Plugins.Registry plugin_registry = new Plugins.Registry(); + static string print_xmpp; + + private const OptionEntry[] options = { + { "print-xmpp", 0, 0, OptionArg.STRING, ref print_xmpp, "Print XMPP stanzas identified by DESC to stderr", "DESC" }, + { null } + }; + public Application() throws Error { if (DirUtils.create_with_parents(get_storage_dir(), 0700) == -1) { throw new Error(-1, 0, "Could not create storage dir \"%s\": %s", get_storage_dir(), FileUtils.error_from_errno(errno).to_string()); } - // FIXME: Legacy import - if (FileUtils.test("store.sqlite3", FileTest.IS_REGULAR)) { - FileUtils.rename("store.sqlite3", Path.build_filename(get_storage_dir(), "dino.db")); - } - this.db = new Database(Path.build_filename(get_storage_dir(), "dino.db")); this.stream_interaction = new StreamInteractor(db); @@ -31,8 +33,10 @@ public class Dino.Application : Gtk.Application { ChatInteraction.start(stream_interaction); activate.connect(() => { + stream_interaction.connection_manager.log_options = print_xmpp; restore(); }); + add_main_option_entries(options); } public static string get_storage_dir() { -- cgit v1.2.3-70-g09d2