mirror of
https://github.com/polyjitter/searchbot-discord.git
synced 2024-08-14 22:46:55 +00:00
Fixed logging issues without hook
This commit is contained in:
parent
b87d724c35
commit
b9c017d6c5
2 changed files with 10 additions and 12 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -55,3 +55,4 @@ coverage.xml
|
|||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
extensions/__pycache__/core.cpython-38.pyc
|
||||
|
|
|
@ -22,28 +22,25 @@ class Logging():
|
|||
|
||||
# Sets info hook first
|
||||
self.info_hook = self.online.get_webhook(
|
||||
bot.config['HOOKS']['INFO_HOOK']
|
||||
if bot.config['HOOKS']['INFO_HOOK']
|
||||
bot.config['HOOKS']['INFO_HOOK']) \
|
||||
if bot.config['HOOKS']['INFO_HOOK'] \
|
||||
else None
|
||||
)
|
||||
|
||||
|
||||
# Sets other hooks or defaults them
|
||||
if self.info_hook:
|
||||
self.warn_hook = self.online.get_webhook(
|
||||
bot.config['HOOKS']['WARN_HOOK']
|
||||
if bot.config['HOOKS']['WARN_HOOK']
|
||||
bot.config['HOOKS']['WARN_HOOK']) \
|
||||
if bot.config['HOOKS']['WARN_HOOK'] \
|
||||
else self.info_hook
|
||||
)
|
||||
self.error_hook = self.online.get_webhook(
|
||||
bot.config['HOOKS']['ERROR_HOOK']
|
||||
if bot.config['HOOKS']['ERROR_HOOK']
|
||||
bot.config['HOOKS']['ERROR_HOOK']) \
|
||||
if bot.config['HOOKS']['ERROR_HOOK'] \
|
||||
else self.info_hook
|
||||
)
|
||||
self.debug_hook = self.online.get_webhook(
|
||||
bot.config['HOOKS']['DEBUG_HOOK']
|
||||
if bot.config['HOOKS']['DEBUG_HOOK']
|
||||
bot.config['HOOKS']['DEBUG_HOOK']) \
|
||||
if bot.config['HOOKS']['DEBUG_HOOK'] \
|
||||
else self.info_hook
|
||||
)
|
||||
|
||||
# If no hooks, nothing is there
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue