add logging
This commit is contained in:
parent
06b34e8648
commit
25cbc0da30
|
@ -26,6 +26,12 @@ import gobject
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
import logging
|
||||||
|
# logging has been set up in fpdb.py or HUD_main.py, use their settings:
|
||||||
|
log = logging.getLogger("importer")
|
||||||
|
|
||||||
|
|
||||||
import fpdb_import
|
import fpdb_import
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
import Configuration
|
import Configuration
|
||||||
|
@ -296,6 +302,7 @@ class GuiAutoImport (threading.Thread):
|
||||||
|
|
||||||
def addSites(self, vbox1, vbox2):
|
def addSites(self, vbox1, vbox2):
|
||||||
the_sites = self.config.get_supported_sites()
|
the_sites = self.config.get_supported_sites()
|
||||||
|
#log.debug("addSites: the_sites="+str(the_sites))
|
||||||
for site in the_sites:
|
for site in the_sites:
|
||||||
pathHBox1 = gtk.HBox(False, 0)
|
pathHBox1 = gtk.HBox(False, 0)
|
||||||
vbox1.pack_start(pathHBox1, False, True, 0)
|
vbox1.pack_start(pathHBox1, False, True, 0)
|
||||||
|
@ -306,6 +313,7 @@ class GuiAutoImport (threading.Thread):
|
||||||
paths = self.config.get_default_paths(site)
|
paths = self.config.get_default_paths(site)
|
||||||
self.createSiteLine(pathHBox1, pathHBox2, site, False, paths['hud-defaultPath'], params['converter'], params['enabled'])
|
self.createSiteLine(pathHBox1, pathHBox2, site, False, paths['hud-defaultPath'], params['converter'], params['enabled'])
|
||||||
self.input_settings[site] = [paths['hud-defaultPath']] + [params['converter']]
|
self.input_settings[site] = [paths['hud-defaultPath']] + [params['converter']]
|
||||||
|
#log.debug("addSites: input_settings="+str(self.input_settings))
|
||||||
|
|
||||||
if __name__== "__main__":
|
if __name__== "__main__":
|
||||||
def destroy(*args): # call back for terminating the main eventloop
|
def destroy(*args): # call back for terminating the main eventloop
|
||||||
|
|
Loading…
Reference in New Issue
Block a user