aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-03-26 12:39:33 +1000
committerGravatar GitHub <[email protected]>2019-03-26 12:39:33 +1000
commitc998013624ca47a98543a0464f343ae79c8a1627 (patch)
tree18319ecb8c008804d9a84fe4fab92e4bcfd3d1b6
parentRemove unnecessary listener from local error handler (diff)
Adjust cog load logs to use cog class name.
-rw-r--r--bot/seasons/__init__.py2
-rw-r--r--bot/seasons/christmas/adventofcode.py2
-rw-r--r--bot/seasons/halloween/candy_collection.py2
-rw-r--r--bot/seasons/halloween/hacktoberstats.py2
-rw-r--r--bot/seasons/halloween/halloween_facts.py2
-rw-r--r--bot/seasons/halloween/monstersurvey.py2
-rw-r--r--bot/seasons/halloween/scarymovie.py2
-rw-r--r--bot/seasons/halloween/spookyavatar.py2
-rw-r--r--bot/seasons/halloween/spookygif.py2
-rw-r--r--bot/seasons/halloween/spookyreact.py2
-rw-r--r--bot/seasons/halloween/spookysound.py2
-rw-r--r--bot/seasons/valentines/be_my_valentine.py2
-rw-r--r--bot/seasons/valentines/lovecalculator.py2
-rw-r--r--bot/seasons/valentines/movie_generator.py2
-rw-r--r--bot/seasons/valentines/myvalenstate.py2
-rw-r--r--bot/seasons/valentines/savethedate.py2
-rw-r--r--bot/seasons/valentines/valentine_zodiac.py2
-rw-r--r--bot/seasons/valentines/whoisvalentine.py2
18 files changed, 18 insertions, 18 deletions
diff --git a/bot/seasons/__init__.py b/bot/seasons/__init__.py
index 7e8cf3ba..1512fae2 100644
--- a/bot/seasons/__init__.py
+++ b/bot/seasons/__init__.py
@@ -9,4 +9,4 @@ log = logging.getLogger(__name__)
def setup(bot):
bot.add_cog(SeasonManager(bot))
- log.info("Season manager cog loaded")
+ log.info("SeasonManager cog loaded")
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py
index 60c2a311..2995c3fd 100644
--- a/bot/seasons/christmas/adventofcode.py
+++ b/bot/seasons/christmas/adventofcode.py
@@ -730,4 +730,4 @@ def _error_embed_helper(title: str, description: str) -> discord.Embed:
def setup(bot: commands.Bot) -> None:
bot.add_cog(AdventOfCode(bot))
- log.info("Advent of Code cog loaded")
+ log.info("AdventOfCode cog loaded")
diff --git a/bot/seasons/halloween/candy_collection.py b/bot/seasons/halloween/candy_collection.py
index 87795c77..6932097c 100644
--- a/bot/seasons/halloween/candy_collection.py
+++ b/bot/seasons/halloween/candy_collection.py
@@ -233,4 +233,4 @@ class CandyCollection(commands.Cog):
def setup(bot):
bot.add_cog(CandyCollection(bot))
- log.info("Candy collection cog loaded")
+ log.info("CandyCollection cog loaded")
diff --git a/bot/seasons/halloween/hacktoberstats.py b/bot/seasons/halloween/hacktoberstats.py
index 41a7f5f2..81f11455 100644
--- a/bot/seasons/halloween/hacktoberstats.py
+++ b/bot/seasons/halloween/hacktoberstats.py
@@ -332,4 +332,4 @@ class HacktoberStats(commands.Cog):
def setup(bot):
bot.add_cog(HacktoberStats(bot))
- log.info("Hacktober stats cog loaded")
+ log.info("HacktoberStats cog loaded")
diff --git a/bot/seasons/halloween/halloween_facts.py b/bot/seasons/halloween/halloween_facts.py
index 3d833232..9224cc57 100644
--- a/bot/seasons/halloween/halloween_facts.py
+++ b/bot/seasons/halloween/halloween_facts.py
@@ -64,4 +64,4 @@ class HalloweenFacts(commands.Cog):
def setup(bot):
bot.add_cog(HalloweenFacts(bot))
- log.info("Halloween facts cog loaded")
+ log.info("HalloweenFacts cog loaded")
diff --git a/bot/seasons/halloween/monstersurvey.py b/bot/seasons/halloween/monstersurvey.py
index a518ba01..2b251b90 100644
--- a/bot/seasons/halloween/monstersurvey.py
+++ b/bot/seasons/halloween/monstersurvey.py
@@ -215,4 +215,4 @@ class MonsterSurvey(Cog):
def setup(bot):
bot.add_cog(MonsterSurvey(bot))
- log.info("Monster survey cog loaded")
+ log.info("MonsterSurvey cog loaded")
diff --git a/bot/seasons/halloween/scarymovie.py b/bot/seasons/halloween/scarymovie.py
index c331e50e..dcff4f58 100644
--- a/bot/seasons/halloween/scarymovie.py
+++ b/bot/seasons/halloween/scarymovie.py
@@ -138,4 +138,4 @@ class ScaryMovie(commands.Cog):
def setup(bot):
bot.add_cog(ScaryMovie(bot))
- log.info("Scary movie cog loaded")
+ log.info("ScaryMovie cog loaded")
diff --git a/bot/seasons/halloween/spookyavatar.py b/bot/seasons/halloween/spookyavatar.py
index 2fe4dcf2..032ad352 100644
--- a/bot/seasons/halloween/spookyavatar.py
+++ b/bot/seasons/halloween/spookyavatar.py
@@ -55,4 +55,4 @@ class SpookyAvatar(commands.Cog):
def setup(bot):
bot.add_cog(SpookyAvatar(bot))
- log.info("Spooky avatar cog loaded")
+ log.info("SpookyAvatar cog loaded")
diff --git a/bot/seasons/halloween/spookygif.py b/bot/seasons/halloween/spookygif.py
index 054f9b12..c11d5ecb 100644
--- a/bot/seasons/halloween/spookygif.py
+++ b/bot/seasons/halloween/spookygif.py
@@ -40,4 +40,4 @@ class SpookyGif(commands.Cog):
def setup(bot):
bot.add_cog(SpookyGif(bot))
- log.info("Spooky gif cog loaded")
+ log.info("SpookyGif cog loaded")
diff --git a/bot/seasons/halloween/spookyreact.py b/bot/seasons/halloween/spookyreact.py
index 229566e9..3b4e3fdf 100644
--- a/bot/seasons/halloween/spookyreact.py
+++ b/bot/seasons/halloween/spookyreact.py
@@ -71,4 +71,4 @@ class SpookyReact(Cog):
def setup(bot):
bot.add_cog(SpookyReact(bot))
- log.info("Spooky react cog loaded")
+ log.info("SpookyReact cog loaded")
diff --git a/bot/seasons/halloween/spookysound.py b/bot/seasons/halloween/spookysound.py
index 0d3a99bd..1e430dab 100644
--- a/bot/seasons/halloween/spookysound.py
+++ b/bot/seasons/halloween/spookysound.py
@@ -47,4 +47,4 @@ class SpookySound(commands.Cog):
def setup(bot):
bot.add_cog(SpookySound(bot))
- log.info("Spooky sound cog loaded")
+ log.info("SpookySound cog loaded")
diff --git a/bot/seasons/valentines/be_my_valentine.py b/bot/seasons/valentines/be_my_valentine.py
index 00fd904c..4e2182c3 100644
--- a/bot/seasons/valentines/be_my_valentine.py
+++ b/bot/seasons/valentines/be_my_valentine.py
@@ -238,4 +238,4 @@ class BeMyValentine(commands.Cog):
def setup(bot):
bot.add_cog(BeMyValentine(bot))
- log.info("Be My Valentine cog loaded")
+ log.info("BeMyValentine cog loaded")
diff --git a/bot/seasons/valentines/lovecalculator.py b/bot/seasons/valentines/lovecalculator.py
index 2b6dc759..0662cf5b 100644
--- a/bot/seasons/valentines/lovecalculator.py
+++ b/bot/seasons/valentines/lovecalculator.py
@@ -104,4 +104,4 @@ class LoveCalculator(Cog):
def setup(bot):
bot.add_cog(LoveCalculator(bot))
- log.info("Love calculator cog loaded")
+ log.info("LoveCalculator cog loaded")
diff --git a/bot/seasons/valentines/movie_generator.py b/bot/seasons/valentines/movie_generator.py
index eb72771c..8fce011b 100644
--- a/bot/seasons/valentines/movie_generator.py
+++ b/bot/seasons/valentines/movie_generator.py
@@ -63,4 +63,4 @@ class RomanceMovieFinder(commands.Cog):
def setup(bot):
bot.add_cog(RomanceMovieFinder(bot))
- log.info("Random romance movie cog loaded")
+ log.info("RomanceMovieFinder cog loaded")
diff --git a/bot/seasons/valentines/myvalenstate.py b/bot/seasons/valentines/myvalenstate.py
index efc374d4..7d9f3a59 100644
--- a/bot/seasons/valentines/myvalenstate.py
+++ b/bot/seasons/valentines/myvalenstate.py
@@ -82,4 +82,4 @@ class MyValenstate(commands.Cog):
def setup(bot):
bot.add_cog(MyValenstate(bot))
- log.info("My Valenstate cog loaded")
+ log.info("MyValenstate cog loaded")
diff --git a/bot/seasons/valentines/savethedate.py b/bot/seasons/valentines/savethedate.py
index 830b3015..f587c2fc 100644
--- a/bot/seasons/valentines/savethedate.py
+++ b/bot/seasons/valentines/savethedate.py
@@ -41,4 +41,4 @@ class SaveTheDate(commands.Cog):
def setup(bot):
bot.add_cog(SaveTheDate(bot))
- log.info("Save the date cog loaded")
+ log.info("SaveTheDate cog loaded")
diff --git a/bot/seasons/valentines/valentine_zodiac.py b/bot/seasons/valentines/valentine_zodiac.py
index 0e2cb2a1..33fc739a 100644
--- a/bot/seasons/valentines/valentine_zodiac.py
+++ b/bot/seasons/valentines/valentine_zodiac.py
@@ -56,4 +56,4 @@ class ValentineZodiac(commands.Cog):
def setup(bot):
bot.add_cog(ValentineZodiac(bot))
- log.info("Valentine Zodiac cog loaded")
+ log.info("ValentineZodiac cog loaded")
diff --git a/bot/seasons/valentines/whoisvalentine.py b/bot/seasons/valentines/whoisvalentine.py
index 433ff251..59a13ca3 100644
--- a/bot/seasons/valentines/whoisvalentine.py
+++ b/bot/seasons/valentines/whoisvalentine.py
@@ -51,4 +51,4 @@ class ValentineFacts(commands.Cog):
def setup(bot):
bot.add_cog(ValentineFacts(bot))
- log.info("Who Is Valentine? cog loaded")
+ log.info("ValentineFacts cog loaded")