Add dbus-monitor service, but disable to reduce spew
This commit is contained in:
parent
5f93f41387
commit
45e37349d2
@ -41,6 +41,13 @@ class MatchboxProcess(Process):
|
|||||||
def get_name(self):
|
def get_name(self):
|
||||||
return 'Matchbox'
|
return 'Matchbox'
|
||||||
|
|
||||||
|
class DBusMonitorProcess(Process):
|
||||||
|
def __init__(self):
|
||||||
|
Process.__init__(self, "dbus-monitor --session")
|
||||||
|
|
||||||
|
def get_name(self):
|
||||||
|
return 'dbus-monitor'
|
||||||
|
|
||||||
class Session:
|
class Session:
|
||||||
"""Takes care of running the shell and all the sugar processes"""
|
"""Takes care of running the shell and all the sugar processes"""
|
||||||
|
|
||||||
@ -64,6 +71,10 @@ class Session:
|
|||||||
process = DbusProcess()
|
process = DbusProcess()
|
||||||
process.start()
|
process.start()
|
||||||
|
|
||||||
|
if 0:
|
||||||
|
dbm = DBusMonitorProcess()
|
||||||
|
dbm.start()
|
||||||
|
|
||||||
console = ConsoleWindow()
|
console = ConsoleWindow()
|
||||||
logger.start('Shell', console)
|
logger.start('Shell', console)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user