From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [101.128.125.209]) by gnuweeb.org (Postfix) with ESMTPSA id E04A38198C; Mon, 19 Dec 2022 23:58:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1671494293; bh=Usn1F2Qh+uNoYSIzjne1FffW3RMxfH9pqncrY2rQxmg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mjlXPPQZMJ9SUAdJiEDyTBACYfywpXjiGuiGAwyOA+GI+BqgWVhlDZ5LJGQDGkvo9 VcP1pCWreLcnPpueKufaXpWOIYnmHRmeqUU/Xg7wpZxx18QzFpxIw5PSvwhbfhjBSW 4ipahPvCMIzILOp32V9rYvCfEFk0Qd3pCm7m7F4kC+4xI0ap4g5tqUnqtQoGUNlZgJ FrCwfYEGZPKel0oCBdt3xm2dS3qOSW8q7LIVsWp5CuBBiBUcbaJJeOajwbLzw2h0Oe CwSDLUVwI5dh3wsmaPrjxbVcUjZiUyx9ESU044dthus5KS1XnQfXXRqzKhnDoc3TJ0 Ao/YcbtdxRfcw== From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH v3 13/17] discord: Add variable LOG_CHANNEL_ID declaration Date: Tue, 20 Dec 2022 06:57:17 +0700 Message-Id: <20221219235721.126-14-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.34.1.windows.1 In-Reply-To: <20221219235721.126-1-kiizuha@gnuweeb.org> References: <20221219235721.126-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Add LOG_CHANNEL_ID into the config.py.example to use it in the future use to send the log file to its Discord channel logs using the LOG_CHANNEL_ID. Signed-off-by: Muhammad Rizki --- daemon/dscord/config.py.example | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/daemon/dscord/config.py.example b/daemon/dscord/config.py.example index 6dd4313..6db826c 100644 --- a/daemon/dscord/config.py.example +++ b/daemon/dscord/config.py.example @@ -11,3 +11,7 @@ ADMIN_ROLE_ID = # The activity name like "Playing Genshin Impact" # you set the value as "Genshin Impact" ACTIVITY_NAME = + +# Insert Discord channel ID to send the log file +# type (int) +LOG_CHANNEL_ID = -- Muhammad Rizki