forked from openlp/openlp
Changed log.warn to log.warning
This commit is contained in:
parent
d61111ab89
commit
9b6979b840
@ -81,4 +81,4 @@ class OpenLPToolbar(QtGui.QToolBar):
|
||||
if handle in self.actions:
|
||||
self.actions[handle].setVisible(visible)
|
||||
else:
|
||||
log.warn('No handle "%s" in actions list.', str(handle))
|
||||
log.warning('No handle "%s" in actions list.', str(handle))
|
||||
|
@ -172,7 +172,7 @@ def create_button(parent, name, **kwargs):
|
||||
kwargs.setdefault('icon', ':/services/service_down.png')
|
||||
kwargs.setdefault('tooltip', translate('OpenLP.Ui', 'Move selection down one position.'))
|
||||
else:
|
||||
log.warn('The role "%s" is not defined in create_push_button().', role)
|
||||
log.warning('The role "%s" is not defined in create_push_button().', role)
|
||||
if kwargs.pop('btn_class', '') == 'toolbutton':
|
||||
button = QtGui.QToolButton(parent)
|
||||
else:
|
||||
@ -190,7 +190,7 @@ def create_button(parent, name, **kwargs):
|
||||
button.clicked.connect(kwargs.pop('click'))
|
||||
for key in list(kwargs.keys()):
|
||||
if key not in ['text', 'icon', 'tooltip', 'click']:
|
||||
log.warn('Parameter %s was not consumed in create_button().', key)
|
||||
log.warning('Parameter %s was not consumed in create_button().', key)
|
||||
return button
|
||||
|
||||
|
||||
@ -275,7 +275,7 @@ def create_action(parent, name, **kwargs):
|
||||
action.triggered.connect(kwargs.pop('triggers'))
|
||||
for key in list(kwargs.keys()):
|
||||
if key not in ['text', 'icon', 'tooltip', 'statustip', 'checked', 'can_shortcuts', 'category', 'triggers']:
|
||||
log.warn('Parameter %s was not consumed in create_action().' % key)
|
||||
log.warning('Parameter %s was not consumed in create_action().' % key)
|
||||
return action
|
||||
|
||||
|
||||
|
@ -175,7 +175,7 @@ class MediaController(RegistryMixin, OpenLPMixin, RegistryProperties):
|
||||
# On some platforms importing vlc.py might cause
|
||||
# also OSError exceptions. (e.g. Mac OS X)
|
||||
except (ImportError, OSError):
|
||||
log.warn('Failed to import %s on path %s', module_name, path)
|
||||
log.warning('Failed to import %s on path %s', module_name, path)
|
||||
player_classes = MediaPlayer.__subclasses__()
|
||||
for player_class in player_classes:
|
||||
player = player_class(self)
|
||||
|
@ -279,7 +279,7 @@ class ActionList(object):
|
||||
actions.append(action)
|
||||
ActionList.shortcut_map[shortcuts[1]] = actions
|
||||
else:
|
||||
log.warn('Shortcut "%s" is removed from "%s" because another action already uses this shortcut.' %
|
||||
log.warning('Shortcut "%s" is removed from "%s" because another action already uses this shortcut.' %
|
||||
(shortcuts[1], action.objectName()))
|
||||
shortcuts.remove(shortcuts[1])
|
||||
# Check the primary shortcut.
|
||||
@ -290,7 +290,7 @@ class ActionList(object):
|
||||
actions.append(action)
|
||||
ActionList.shortcut_map[shortcuts[0]] = actions
|
||||
else:
|
||||
log.warn('Shortcut "%s" is removed from "%s" because another action already uses this shortcut.' %
|
||||
log.warning('Shortcut "%s" is removed from "%s" because another action already uses this shortcut.' %
|
||||
(shortcuts[0], action.objectName()))
|
||||
shortcuts.remove(shortcuts[0])
|
||||
action.setShortcuts([QtGui.QKeySequence(shortcut) for shortcut in shortcuts])
|
||||
|
@ -423,7 +423,7 @@ class BibleUpgradeForm(OpenLPWizard):
|
||||
else:
|
||||
language_id = self.new_bibles[number].get_language(name)
|
||||
if not language_id:
|
||||
log.warn('Upgrading from "%s" failed' % filename[0])
|
||||
log.warning('Upgrading from "%s" failed' % filename[0])
|
||||
self.new_bibles[number].session.close()
|
||||
del self.new_bibles[number]
|
||||
self.increment_progress_bar(
|
||||
@ -444,7 +444,7 @@ class BibleUpgradeForm(OpenLPWizard):
|
||||
book_ref_id = self.new_bibles[number].\
|
||||
get_book_ref_id_by_name(book, len(books), language_id)
|
||||
if not book_ref_id:
|
||||
log.warn('Upgrading books from %s - download name: "%s" aborted by user' % (
|
||||
log.warning('Upgrading books from %s - download name: "%s" aborted by user' % (
|
||||
meta_data['download_source'], meta_data['download_name']))
|
||||
self.new_bibles[number].session.close()
|
||||
del self.new_bibles[number]
|
||||
@ -457,7 +457,7 @@ class BibleUpgradeForm(OpenLPWizard):
|
||||
if oldbook:
|
||||
verses = old_bible.get_verses(oldbook['id'])
|
||||
if not verses:
|
||||
log.warn('No verses found to import for book "%s"', book)
|
||||
log.warning('No verses found to import for book "%s"', book)
|
||||
continue
|
||||
for verse in verses:
|
||||
if self.stop_import_flag:
|
||||
@ -472,7 +472,7 @@ class BibleUpgradeForm(OpenLPWizard):
|
||||
if not language_id:
|
||||
language_id = self.new_bibles[number].get_language(name)
|
||||
if not language_id:
|
||||
log.warn('Upgrading books from "%s" failed' % name)
|
||||
log.warning('Upgrading books from "%s" failed' % name)
|
||||
self.new_bibles[number].session.close()
|
||||
del self.new_bibles[number]
|
||||
self.increment_progress_bar(
|
||||
@ -493,7 +493,7 @@ class BibleUpgradeForm(OpenLPWizard):
|
||||
(number + 1, max_bibles, name, book['name']))
|
||||
book_ref_id = self.new_bibles[number].get_book_ref_id_by_name(book['name'], len(books), language_id)
|
||||
if not book_ref_id:
|
||||
log.warn('Upgrading books from %s " failed - aborted by user' % name)
|
||||
log.warning('Upgrading books from %s " failed - aborted by user' % name)
|
||||
self.new_bibles[number].session.close()
|
||||
del self.new_bibles[number]
|
||||
self.success[number] = False
|
||||
@ -503,7 +503,7 @@ class BibleUpgradeForm(OpenLPWizard):
|
||||
book_details['testament_id'])
|
||||
verses = old_bible.get_verses(book['id'])
|
||||
if not verses:
|
||||
log.warn('No verses found to import for book "%s"', book['name'])
|
||||
log.warning('No verses found to import for book "%s"', book['name'])
|
||||
self.new_bibles[number].delete_book(db_book)
|
||||
continue
|
||||
for verse in verses:
|
||||
|
@ -165,7 +165,7 @@ class BGExtract(RegistryProperties):
|
||||
if len(verse_parts) > 1:
|
||||
verse = int(verse_parts[0])
|
||||
except TypeError:
|
||||
log.warn('Illegal verse number: %s', str(verse))
|
||||
log.warning('Illegal verse number: %s', str(verse))
|
||||
verses.append((verse, text))
|
||||
verse_list = {}
|
||||
for verse, text in verses[::-1]:
|
||||
@ -198,7 +198,7 @@ class BGExtract(RegistryProperties):
|
||||
if len(verse_parts) > 1:
|
||||
clean_verse_num = int(verse_parts[0])
|
||||
except TypeError:
|
||||
log.warn('Illegal verse number: %s', str(raw_verse_num))
|
||||
log.warning('Illegal verse number: %s', str(raw_verse_num))
|
||||
if clean_verse_num:
|
||||
verse_text = raw_verse_num.next_element
|
||||
part = raw_verse_num.next_element.next_element
|
||||
|
@ -123,7 +123,7 @@ class OpenSongBible(BibleDB):
|
||||
if len(verse_parts) > 1:
|
||||
number = int(verse_parts[0])
|
||||
except TypeError:
|
||||
log.warn('Illegal verse number: %s', str(verse.attrib['n']))
|
||||
log.warning('Illegal verse number: %s', str(verse.attrib['n']))
|
||||
verse_number = number
|
||||
else:
|
||||
verse_number += 1
|
||||
|
@ -129,7 +129,7 @@ class ImpressController(PresentationController):
|
||||
try:
|
||||
uno_instance = get_uno_instance(resolver)
|
||||
except:
|
||||
log.warn('Unable to find running instance ')
|
||||
log.warning('Unable to find running instance ')
|
||||
self.start_process()
|
||||
loop += 1
|
||||
try:
|
||||
@ -138,7 +138,7 @@ class ImpressController(PresentationController):
|
||||
desktop = self.manager.createInstanceWithContext("com.sun.star.frame.Desktop", uno_instance)
|
||||
return desktop
|
||||
except:
|
||||
log.warn('Failed to get UNO desktop')
|
||||
log.warning('Failed to get UNO desktop')
|
||||
return None
|
||||
|
||||
def get_com_desktop(self):
|
||||
@ -152,7 +152,7 @@ class ImpressController(PresentationController):
|
||||
try:
|
||||
desktop = self.manager.createInstance('com.sun.star.frame.Desktop')
|
||||
except (AttributeError, pywintypes.com_error):
|
||||
log.warn('Failure to find desktop - Impress may have closed')
|
||||
log.warning('Failure to find desktop - Impress may have closed')
|
||||
return desktop if desktop else None
|
||||
|
||||
def get_com_servicemanager(self):
|
||||
@ -163,7 +163,7 @@ class ImpressController(PresentationController):
|
||||
try:
|
||||
return Dispatch('com.sun.star.ServiceManager')
|
||||
except pywintypes.com_error:
|
||||
log.warn('Failed to get COM service manager. Impress Controller has been disabled')
|
||||
log.warning('Failed to get COM service manager. Impress Controller has been disabled')
|
||||
return None
|
||||
|
||||
def kill(self):
|
||||
@ -180,7 +180,7 @@ class ImpressController(PresentationController):
|
||||
else:
|
||||
desktop = self.get_com_desktop()
|
||||
except:
|
||||
log.warn('Failed to find an OpenOffice desktop to terminate')
|
||||
log.warning('Failed to find an OpenOffice desktop to terminate')
|
||||
if not desktop:
|
||||
return
|
||||
docs = desktop.getComponents()
|
||||
@ -198,7 +198,7 @@ class ImpressController(PresentationController):
|
||||
desktop.terminate()
|
||||
log.debug('OpenOffice killed')
|
||||
except:
|
||||
log.warn('Failed to terminate OpenOffice')
|
||||
log.warning('Failed to terminate OpenOffice')
|
||||
|
||||
|
||||
class ImpressDocument(PresentationDocument):
|
||||
@ -244,7 +244,7 @@ class ImpressDocument(PresentationDocument):
|
||||
try:
|
||||
self.document = desktop.loadComponentFromURL(url, '_blank', 0, properties)
|
||||
except:
|
||||
log.warn('Failed to load presentation %s' % url)
|
||||
log.warning('Failed to load presentation %s' % url)
|
||||
return False
|
||||
if os.name == 'nt':
|
||||
# As we can't start minimized the Impress window gets in the way.
|
||||
@ -318,7 +318,7 @@ class ImpressDocument(PresentationDocument):
|
||||
self.presentation = None
|
||||
self.document.dispose()
|
||||
except:
|
||||
log.warn("Closing presentation failed")
|
||||
log.warning("Closing presentation failed")
|
||||
self.document = None
|
||||
self.controller.remove_doc(self)
|
||||
|
||||
@ -335,7 +335,7 @@ class ImpressDocument(PresentationDocument):
|
||||
log.debug("getPresentation failed to find a presentation")
|
||||
return False
|
||||
except:
|
||||
log.warn("getPresentation failed to find a presentation")
|
||||
log.warning("getPresentation failed to find a presentation")
|
||||
return False
|
||||
return True
|
||||
|
||||
|
@ -98,7 +98,7 @@ class Controller(object):
|
||||
return True
|
||||
if not self.doc.is_loaded():
|
||||
if not self.doc.load_presentation():
|
||||
log.warn('Failed to activate %s' % self.doc.filepath)
|
||||
log.warning('Failed to activate %s' % self.doc.filepath)
|
||||
return False
|
||||
if self.is_live:
|
||||
self.doc.start_presentation()
|
||||
@ -109,7 +109,7 @@ class Controller(object):
|
||||
if self.doc.is_active():
|
||||
return True
|
||||
else:
|
||||
log.warn('Failed to activate %s' % self.doc.filepath)
|
||||
log.warning('Failed to activate %s' % self.doc.filepath)
|
||||
return False
|
||||
|
||||
def slide(self, slide):
|
||||
|
@ -90,7 +90,7 @@ class PresentationPlugin(Plugin):
|
||||
try:
|
||||
self.controllers[controller].start_process()
|
||||
except Exception:
|
||||
log.warn('Failed to start controller process')
|
||||
log.warning('Failed to start controller process')
|
||||
self.controllers[controller].available = False
|
||||
self.media_item.build_file_mask_string()
|
||||
|
||||
@ -134,7 +134,7 @@ class PresentationPlugin(Plugin):
|
||||
try:
|
||||
__import__(module_name, globals(), locals(), [])
|
||||
except ImportError:
|
||||
log.warn('Failed to import %s on path %s', module_name, path)
|
||||
log.warning('Failed to import %s on path %s', module_name, path)
|
||||
controller_classes = PresentationController.__subclasses__()
|
||||
for controller_class in controller_classes:
|
||||
controller = controller_class(self)
|
||||
|
@ -152,7 +152,7 @@ class SongShowPlusImport(SongImport):
|
||||
if match:
|
||||
self.ccli_number = int(match.group())
|
||||
else:
|
||||
log.warn("Can't parse CCLI Number from string: %s" % self.decode(data))
|
||||
log.warning("Can't parse CCLI Number from string: %s" % self.decode(data))
|
||||
elif block_key == VERSE:
|
||||
self.add_verse(self.decode(data), "%s%s" % (VerseType.tags[VerseType.Verse], verse_no))
|
||||
elif block_key == CHORUS:
|
||||
|
@ -58,7 +58,7 @@ class WorshipCenterProImport(SongImport):
|
||||
try:
|
||||
conn = pyodbc.connect('DRIVER={Microsoft Access Driver (*.mdb)};DBQ=%s' % self.import_source)
|
||||
except (pyodbc.DatabaseError, pyodbc.IntegrityError, pyodbc.InternalError, pyodbc.OperationalError) as e:
|
||||
log.warn('Unable to connect the WorshipCenter Pro database %s. %s', self.import_source, str(e))
|
||||
log.warning('Unable to connect the WorshipCenter Pro database %s. %s', self.import_source, str(e))
|
||||
# Unfortunately no specific exception type
|
||||
self.log_error(self.import_source, translate('SongsPlugin.WorshipCenterProImport',
|
||||
'Unable to connect the WorshipCenter Pro database.'))
|
||||
|
Loading…
Reference in New Issue
Block a user