Skip to content

Commit

Permalink
Revert "Update logging library to aiologger"
Browse files Browse the repository at this point in the history
This reverts commit a356574.
  • Loading branch information
LobaDK committed Mar 21, 2024
1 parent cb6e863 commit 9154b77
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion QuantumKat.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
from sys import exit

import sqlite3
import aiologger as logging
import logging
import logging.handlers
from discord import Intents, __version__
from discord.ext import commands
from dotenv import load_dotenv
Expand Down
2 changes: 1 addition & 1 deletion cogs/Activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from discord import Game
from discord.ext import commands, tasks
from num2words import num2words
import aiologger as logging
import logging


class Activity(commands.Cog):
Expand Down
2 changes: 1 addition & 1 deletion cogs/Chat.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from openai import AsyncOpenAI as OpenAI, OpenAIError
import aiologger as logging
import logging
import tiktoken
import os
import sqlite3
Expand Down
2 changes: 1 addition & 1 deletion cogs/Control.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from random import choice
import aiologger as logging
import logging

from discord.ext import commands

Expand Down
2 changes: 1 addition & 1 deletion cogs/Entanglement.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from re import compile
from pathlib import Path
from requests import get
import aiologger as logging
import logging

from discord import Message
from discord.ext import commands
Expand Down
2 changes: 1 addition & 1 deletion cogs/Field.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pathlib import Path
from asyncio import create_subprocess_shell, subprocess
from random import random
import aiologger as logging
import logging

from discord.ext import commands
from ntplib import NTPClient
Expand Down
2 changes: 1 addition & 1 deletion cogs/Tunnel.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from discord.ext import commands
from discord import Client

import aiologger as logging
import logging


class Tunnel(commands.Cog):
Expand Down

0 comments on commit 9154b77

Please sign in to comment.