From c5d2b41b0d46d8f0492e03fd1cbf77d72f61f59c Mon Sep 17 00:00:00 2001 From: Chromosomologist Date: Tue, 3 Jan 2023 19:51:26 +0100 Subject: [PATCH] chore: yeet logging from example I should probably add a simple logging setup to the actual plugin though --- examples/plugins/__main__.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/examples/plugins/__main__.py b/examples/plugins/__main__.py index 6b70097..1d25ebb 100644 --- a/examples/plugins/__main__.py +++ b/examples/plugins/__main__.py @@ -1,14 +1,9 @@ import asyncio -import logging import velum import sail -logging.basicConfig() -logging.getLogger().setLevel(logging.DEBUG) - - client = velum.GatewayClient() manager = sail.CommandManager.with_prefix("!") manager.bind_to_app(client)