aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/evergreen/uptime.py
diff options
context:
space:
mode:
authorGravatar Chris Goes <[email protected]>2019-03-25 22:41:34 -0600
committerGravatar GitHub <[email protected]>2019-03-25 22:41:34 -0600
commitc971c2822dce39abde76acffbded7bc03a58ba50 (patch)
treefc3e6484b77907bc0158c271af26261d013ae508 /bot/seasons/evergreen/uptime.py
parentMerge pull request #155 from python-discord/ci-cleanup (diff)
parentRemove unneeded fstring prefix. (diff)
Merge pull request #132 from python-discord/dpy-cog-changes
Add new Cog class inheritance & event listener decoration
Diffstat (limited to 'bot/seasons/evergreen/uptime.py')
-rw-r--r--bot/seasons/evergreen/uptime.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/evergreen/uptime.py b/bot/seasons/evergreen/uptime.py
index 1321da19..3d2c7d03 100644
--- a/bot/seasons/evergreen/uptime.py
+++ b/bot/seasons/evergreen/uptime.py
@@ -9,7 +9,7 @@ from bot import start_time
log = logging.getLogger(__name__)
-class Uptime:
+class Uptime(commands.Cog):
"""
A cog for posting the bots uptime.
"""
@@ -35,4 +35,4 @@ class Uptime:
# 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")