Spaces:
Sleeping
Sleeping
Update app/app.py
Browse files- app/app.py +9 -9
app/app.py
CHANGED
@@ -11,15 +11,15 @@ from commands import ping_command, settings_command
|
|
11 |
from bank import BankSystem, BankAccount, TransactionError
|
12 |
|
13 |
# Logging konfigurieren
|
14 |
-
logging.basicConfig(
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
)
|
22 |
-
logger = logging.getLogger(__name__)
|
23 |
|
24 |
# Umgebungsvariablen und Konfiguration
|
25 |
PUBLIC_KEY = os.getenv('Public_Key', '').strip()
|
|
|
11 |
from bank import BankSystem, BankAccount, TransactionError
|
12 |
|
13 |
# Logging konfigurieren
|
14 |
+
# logging.basicConfig(
|
15 |
+
# level=logging.INFO,
|
16 |
+
# format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
17 |
+
# handlers=[
|
18 |
+
# logging.FileHandler('discord_bot.log'),
|
19 |
+
# logging.StreamHandler()
|
20 |
+
# ]
|
21 |
+
# )
|
22 |
+
# logger = logging.getLogger(__name__)
|
23 |
|
24 |
# Umgebungsvariablen und Konfiguration
|
25 |
PUBLIC_KEY = os.getenv('Public_Key', '').strip()
|