fix(repo): changed all loggers to red.seacogs.<cog_name> instead of red.sea.<cog_name>

This commit is contained in:
SeaswimmerTheFsh 2024-03-07 01:32:27 -05:00
parent f059145681
commit 497f6a0a1a
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063
5 changed files with 7 additions and 7 deletions

View file

@ -27,7 +27,7 @@ class Backup(commands.Cog):
def __init__(self, bot: Red):
super().__init__()
self.bot = bot
self.logger = logging.getLogger("red.sea.backup")
self.logger = logging.getLogger("red.seacogs.backup")
@commands.group(autohelp=True)
@commands.is_owner()