aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar sco1 <[email protected]>2019-03-05 16:35:39 -0500
committerGravatar sco1 <[email protected]>2019-03-05 16:35:39 -0500
commit721d20c8ab4421a3453afcfd3a6c1338c22b41aa (patch)
tree3f7837bb5b17521c2d8cb2638845971158f32553
parentMerge branch 'master' into dpy-cog-changes (diff)
Set cog load log messages to info
Per the contributor doc
-rw-r--r--bot/seasons/__init__.py2
-rw-r--r--bot/seasons/christmas/adventofcode.py2
-rw-r--r--bot/seasons/evergreen/error_handler.py2
-rw-r--r--bot/seasons/evergreen/fun.py2
-rw-r--r--bot/seasons/evergreen/uptime.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/halloweenify.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.py1
-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.py1
22 files changed, 22 insertions, 20 deletions
diff --git a/bot/seasons/__init__.py b/bot/seasons/__init__.py
index c43334a4..7e8cf3ba 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.debug("SeasonManager cog loaded")
+ log.info("Season manager cog loaded")
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py
index c74a6f25..60c2a311 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("Cog loaded: adventofcode")
+ log.info("Advent of Code cog loaded")
diff --git a/bot/seasons/evergreen/error_handler.py b/bot/seasons/evergreen/error_handler.py
index d764fe86..19c22ed8 100644
--- a/bot/seasons/evergreen/error_handler.py
+++ b/bot/seasons/evergreen/error_handler.py
@@ -110,4 +110,4 @@ class CommandErrorHandler(commands.Cog):
def setup(bot):
bot.add_cog(CommandErrorHandler(bot))
- log.debug("CommandErrorHandler cog loaded")
+ log.info("CommandErrorHandler cog loaded")
diff --git a/bot/seasons/evergreen/fun.py b/bot/seasons/evergreen/fun.py
index 0003714d..9ef47331 100644
--- a/bot/seasons/evergreen/fun.py
+++ b/bot/seasons/evergreen/fun.py
@@ -35,4 +35,4 @@ class Fun(commands.Cog):
# Required in order to load the cog, use the class name in the add_cog function.
def setup(bot):
bot.add_cog(Fun(bot))
- log.debug("Fun cog loaded")
+ log.info("Fun cog loaded")
diff --git a/bot/seasons/evergreen/uptime.py b/bot/seasons/evergreen/uptime.py
index cce5ae76..3d2c7d03 100644
--- a/bot/seasons/evergreen/uptime.py
+++ b/bot/seasons/evergreen/uptime.py
@@ -35,4 +35,4 @@ class Uptime(commands.Cog):
# Required in order to load the cog, use the class name in the add_cog function.
def setup(bot):
bot.add_cog(Uptime(bot))
- log.debug("Uptime cog loaded")
+ log.info("Uptime cog loaded")
diff --git a/bot/seasons/halloween/candy_collection.py b/bot/seasons/halloween/candy_collection.py
index d75e0d94..87795c77 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.debug("CandyCollection cog loaded")
+ log.info("Candy collection cog loaded")
diff --git a/bot/seasons/halloween/hacktoberstats.py b/bot/seasons/halloween/hacktoberstats.py
index 8ac448b8..41a7f5f2 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.debug("HacktoberStats cog loaded")
+ log.info("Hacktober stats cog loaded")
diff --git a/bot/seasons/halloween/halloween_facts.py b/bot/seasons/halloween/halloween_facts.py
index 64f00ab3..3d833232 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.debug("HalloweenFacts cog loaded")
+ log.info("Halloween facts cog loaded")
diff --git a/bot/seasons/halloween/halloweenify.py b/bot/seasons/halloween/halloweenify.py
index 9e1bae59..0d6964a5 100644
--- a/bot/seasons/halloween/halloweenify.py
+++ b/bot/seasons/halloween/halloweenify.py
@@ -52,4 +52,4 @@ class Halloweenify(commands.Cog):
def setup(bot):
bot.add_cog(Halloweenify(bot))
- log.debug("Halloweenify cog loaded")
+ log.info("Halloweenify cog loaded")
diff --git a/bot/seasons/halloween/monstersurvey.py b/bot/seasons/halloween/monstersurvey.py
index aa5d97d2..a518ba01 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.debug("MonsterSurvey cog loaded")
+ log.info("Monster survey cog loaded")
diff --git a/bot/seasons/halloween/scarymovie.py b/bot/seasons/halloween/scarymovie.py
index c9a62edf..c331e50e 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.debug("ScaryMovie cog loaded")
+ log.info("Scary movie cog loaded")
diff --git a/bot/seasons/halloween/spookyavatar.py b/bot/seasons/halloween/spookyavatar.py
index f26cf0b3..2fe4dcf2 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.debug("SpookyAvatar cog loaded")
+ log.info("Spooky avatar cog loaded")
diff --git a/bot/seasons/halloween/spookygif.py b/bot/seasons/halloween/spookygif.py
index f013f415..054f9b12 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.debug("SpookyGif cog loaded")
+ log.info("Spooky gif cog loaded")
diff --git a/bot/seasons/halloween/spookyreact.py b/bot/seasons/halloween/spookyreact.py
index 92afe798..229566e9 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.debug("SpookyReact cog loaded")
+ log.info("Spooky react cog loaded")
diff --git a/bot/seasons/halloween/spookysound.py b/bot/seasons/halloween/spookysound.py
index 1fbbfea6..0d3a99bd 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.debug("SpookySound cog loaded")
+ log.info("Spooky sound cog loaded")
diff --git a/bot/seasons/valentines/be_my_valentine.py b/bot/seasons/valentines/be_my_valentine.py
index f589dbeb..00fd904c 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.debug("Be My Valentine cog loaded")
+ log.info("Be My Valentine cog loaded")
diff --git a/bot/seasons/valentines/lovecalculator.py b/bot/seasons/valentines/lovecalculator.py
index 655430f5..91dd9fdf 100644
--- a/bot/seasons/valentines/lovecalculator.py
+++ b/bot/seasons/valentines/lovecalculator.py
@@ -104,3 +104,4 @@ class LoveCalculator(Cog):
def setup(bot):
bot.add_cog(LoveCalculator(bot))
+ log.info("Love calculator cog loaded") \ No newline at end of file
diff --git a/bot/seasons/valentines/movie_generator.py b/bot/seasons/valentines/movie_generator.py
index ff0bb86b..eb72771c 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.debug("Random romance movie cog loaded!")
+ log.info("Random romance movie cog loaded")
diff --git a/bot/seasons/valentines/myvalenstate.py b/bot/seasons/valentines/myvalenstate.py
index 9f06553d..bd07f6a2 100644
--- a/bot/seasons/valentines/myvalenstate.py
+++ b/bot/seasons/valentines/myvalenstate.py
@@ -82,4 +82,4 @@ class MyValenstate:
def setup(bot):
bot.add_cog(MyValenstate(bot))
- log.debug("MyValenstate cog loaded")
+ log.info("My Valenstate cog loaded")
diff --git a/bot/seasons/valentines/savethedate.py b/bot/seasons/valentines/savethedate.py
index f49d9ff4..830b3015 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.debug("Save the date cog loaded")
+ log.info("Save the date cog loaded")
diff --git a/bot/seasons/valentines/valentine_zodiac.py b/bot/seasons/valentines/valentine_zodiac.py
index aa80a7e9..0e2cb2a1 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.debug("Valentine Zodiac cog loaded")
+ log.info("Valentine Zodiac cog loaded")
diff --git a/bot/seasons/valentines/whoisvalentine.py b/bot/seasons/valentines/whoisvalentine.py
index ade4f131..4ab02cb5 100644
--- a/bot/seasons/valentines/whoisvalentine.py
+++ b/bot/seasons/valentines/whoisvalentine.py
@@ -51,3 +51,4 @@ class ValentineFacts(commands.Cog):
def setup(bot):
bot.add_cog(ValentineFacts(bot))
+ log.info("Who Is Valentine? cog loaded") \ No newline at end of file