From 86c71552a61683de618f4a9dc758c825ea9067a1 Mon Sep 17 00:00:00 2001 From: illvart Date: Sun, 15 Mar 2026 08:40:48 +0700 Subject: [PATCH 1/2] update --- ds/__main__.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ds/__main__.py b/ds/__main__.py index dd7a684..9ec5c5c 100644 --- a/ds/__main__.py +++ b/ds/__main__.py @@ -19,11 +19,10 @@ async def main() -> None: if __name__ == "__main__": try: uvloop.run(main()) - except (KeyboardInterrupt, SystemExit): - LOG.warning("[MAIN] - Manual stop signal received.") - sys.exit(0) + except KeyboardInterrupt: + LOG.warning("[APP] Shutdown signal received.") except Exception as err: - LOG.exception(f"[MAIN_ERROR]: {err}") + LOG.exception(f"[APP] Unhandled exception: {err}") sys.exit(1) finally: - LOG.warning("[MAIN] - Stopped...") + LOG.warning("[APP] Stopped.") From be21fed7ef5bd4c121d5af1ef52d14247a8a1dd5 Mon Sep 17 00:00:00 2001 From: illvart Date: Sun, 15 Mar 2026 08:43:42 +0700 Subject: [PATCH 2/2] update --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 40edea8..c1a1b88 100644 --- a/manifest.json +++ b/manifest.json @@ -1,3 +1,3 @@ { - "version": "0.3.4" + "version": "0.3.5" } \ No newline at end of file