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 gnuweeb.org (unknown [51.81.211.47]) by gnuweeb.org (Postfix) with ESMTPSA id 12F6E832B5; Sun, 12 Mar 2023 19:21:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1678648865; bh=2BId3BHS8bZdP7ShLYm/0gIGXI9FcfugWbMXX6L1NMM=; h=From:To:Cc:Subject:Date:From; b=SyKqQuCmglVoZ4vIEmYcynDTdK6Rb5q1N3TdQ8ZvwYfCNQqaEZ3hWbSpuVOX95Q3v uXnQw5LXeADw/4hUHwApzKRfGUaYPtsLlRu2Fgo+7yH8CEpHGAjjNT93vPFJv4WqTH vrCuYKPdzBOO1LWpniJmyXDfKBBUDRzibqi+s3UKRb6USI9EYQbRsjy0QtaaKmnbUg nC4/V9Vq4INyn5xn6mJcjgPAAFocxPnI0qyNq3bVP2rd4seA8Ekcvsr1bHB/ua6dPp zEVG1FBeRYV+v79+osNHAPoeVRsFdtQyfA5CwNJQDKHMVWtm4b+Pfi56EHeosiH+xR vaiQx3lZ7oqIQ== From: Alviro Iskandar Setiawan To: Ammar Faizi Cc: Irvan Malik Azantha , GNU/Weeb Mailing List Subject: [GIT PULL] Initial print-and-log helper functions Date: Sun, 12 Mar 2023 19:21:03 +0000 Message-Id: <20230312192103.3716435-1-alviro.iskandar@gnuweeb.org> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: - Initial print helper functions (INFO, ERROR, DEBUG and WARN). - First usage of those helpers. - Add myself as the maintainer of this subsystem. pleasee pull!!! tq The following changes since commit b294139d3acf2c51c34a761861624e96d99be498: MAINTAINERS: Fix the git tree URL (2023-03-10 06:04:48 +0700) are available in the Git repository at: https://github.com/alviroiskandar/GNUWeebBot2 tags/print-helpers-2023-03-13 for you to fetch changes up to 361651302304118f3354a4a56c8d1e93f9fefd98: MAINTAINERS: Add myself as a print helper functions maintainer (2023-03-11 00:47:33 +0700) ---------------------------------------------------------------- print-helpers-2023-03-13 ---------------------------------------------------------------- Alviro Iskandar Setiawan (3): print: Initial print helper functions core: Use print helper functions MAINTAINERS: Add myself as a print helper functions maintainer MAINTAINERS | 7 +++ core/Makefile | 1 + core/main.c | 8 ++++ core/print.c | 102 ++++++++++++++++++++++++++++++++++++++++ include/gw/common.h | 1 + include/gw/print.h | 29 ++++++++++++ 6 files changed, 148 insertions(+) create mode 100644 core/print.c create mode 100644 include/gw/print.h -- Alviro Iskandar Setiawan