From c82a7b708c4e6424d4242629c27bd20d0c3a06a3 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 30 Jul 2025 11:51:15 +0500 Subject: [PATCH] build-all - verbose logs to print timestamps So it will be easier to track build times from logs --- nix/build-all.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/build-all.py b/nix/build-all.py index ad9a6675b5..bcf224f5ab 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -274,6 +274,8 @@ def gather_dependencies(dep: str) -> "Generator[str]": if "v" in flags: logger.setLevel(logging.DEBUG) + formatter = logging.Formatter("%(asctime)s - %(levelname)s - %(message)s") + ch.setFormatter(formatter) else: logger.setLevel(logging.INFO)