projects
/
profile
/
ivi
/
rygel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
426eac1
)
core: Initialize LogHander at start-up
author
Zeeshan Ali (Khattak)
<zeeshanak@gnome.org>
Fri, 25 Sep 2009 11:57:47 +0000
(14:57 +0300)
committer
Zeeshan Ali (Khattak)
<zeeshanak@gnome.org>
Mon, 28 Sep 2009 22:07:46 +0000
(
01:07
+0300)
src/rygel/rygel-main.vala
patch
|
blob
|
history
diff --git
a/src/rygel/rygel-main.vala
b/src/rygel/rygel-main.vala
index
51bc061
..
fcc9834
100644
(file)
--- a/
src/rygel/rygel-main.vala
+++ b/
src/rygel/rygel-main.vala
@@
-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> ();