core: Initialize LogHander at start-up
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Fri, 25 Sep 2009 11:57:47 +0000 (14:57 +0300)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Mon, 28 Sep 2009 22:07:46 +0000 (01:07 +0300)
src/rygel/rygel-main.vala

index 51bc061..fcc9834 100644 (file)
@@ -32,6 +32,7 @@ public class Rygel.Main : Object {
     private ArrayList <RootDevice> root_devices;
 
     private Configuration config;
+    private LogHandler log_handler;
 
     private MainLoop main_loop;
 
@@ -40,6 +41,7 @@ public class Rygel.Main : Object {
     private Main () throws GLib.Error {
         Environment.set_application_name (_(BuildConfig.PACKAGE_NAME));
 
+        this.log_handler = LogHandler.get_default ();
         this.config = MetaConfig.get_default ();
         this.plugin_loader = new PluginLoader ();
         this.root_devices = new ArrayList <RootDevice> ();