From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <pbs-devel-bounces@lists.proxmox.com>
Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9])
	by lore.proxmox.com (Postfix) with ESMTPS id 89C891FF15C
	for <inbox@lore.proxmox.com>; Wed, 19 Mar 2025 12:30:53 +0100 (CET)
Received: from firstgate.proxmox.com (localhost [127.0.0.1])
	by firstgate.proxmox.com (Proxmox) with ESMTP id 5604184E5;
	Wed, 19 Mar 2025 12:30:42 +0100 (CET)
Date: Wed, 19 Mar 2025 12:30:09 +0100
From: Wolfgang Bumiller <w.bumiller@proxmox.com>
To: Gabriel Goller <g.goller@proxmox.com>
Message-ID: <mvo74klkqzoaq6gnlui7qmtbkid5v2gkhg4joejlpd6ve7pdlb@dpwyq6dhy4nl>
References: <20250218161641.563080-1-g.goller@proxmox.com>
MIME-Version: 1.0
Content-Disposition: inline
In-Reply-To: <20250218161641.563080-1-g.goller@proxmox.com>
X-SPAM-LEVEL: Spam detection results:  0
 AWL 0.080 Adjusted score from AWL reputation of From: address
 BAYES_00                 -1.9 Bayes spam probability is 0 to 1%
 DMARC_MISSING             0.1 Missing DMARC policy
 KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment
 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to
 Validity was blocked. See
 https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more
 information.
 RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to
 Validity was blocked. See
 https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more
 information.
 RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to
 Validity was blocked. See
 https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more
 information.
 SPF_HELO_NONE           0.001 SPF: HELO does not publish an SPF Record
 SPF_PASS               -0.001 SPF: sender matches SPF record
Subject: [pbs-devel] applied-series: [PATCH proxmox{, -backup,
 -perl-rs} 0/4] Introduce builder for logging initialization
X-BeenThere: pbs-devel@lists.proxmox.com
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Proxmox Backup Server development discussion
 <pbs-devel.lists.proxmox.com>
List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pbs-devel>, 
 <mailto:pbs-devel-request@lists.proxmox.com?subject=unsubscribe>
List-Archive: <http://lists.proxmox.com/pipermail/pbs-devel/>
List-Post: <mailto:pbs-devel@lists.proxmox.com>
List-Help: <mailto:pbs-devel-request@lists.proxmox.com?subject=help>
List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel>, 
 <mailto:pbs-devel-request@lists.proxmox.com?subject=subscribe>
Reply-To: Proxmox Backup Server development discussion
 <pbs-devel@lists.proxmox.com>
Cc: pbs-devel@lists.proxmox.com
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: pbs-devel-bounces@lists.proxmox.com
Sender: "pbs-devel" <pbs-devel-bounces@lists.proxmox.com>

applied series, but needed to fix up some doc tests
also factored the no-worker-task filter-fn out into a zst

On Tue, Feb 18, 2025 at 05:16:37PM +0100, Gabriel Goller wrote:
> To move away from product-specific logging functions or overly long and
> descriptive initialization functions, add a builder-type structure.
> This structure will combine layers and compose a logger more descriptively.
> 
> The is backwards compatible as the old functions have not been removed and are
> only deprecated.
> 
> This is the first version because the approach compared to the last series
> changed quite a lot.
> Previous series: https://lore.proxmox.com/pbs-devel/20241209104606.263045-1-g.goller@proxmox.com/
> 
> proxmox:
> 
> Gabriel Goller (2):
>   log: introduce logging builder
>   log: add layer for pve workertasks in perlmod crates
> 
>  proxmox-log/src/builder.rs            | 141 ++++++++++++++++++++++++++
>  proxmox-log/src/lib.rs                |  93 +++++++----------
>  proxmox-log/src/pve_task_formatter.rs |  31 ++++++
>  3 files changed, 209 insertions(+), 56 deletions(-)
>  create mode 100644 proxmox-log/src/builder.rs
>  create mode 100644 proxmox-log/src/pve_task_formatter.rs
> 
> 
> proxmox-backup:
> 
> Gabriel Goller (1):
>   log: use new builder initializer
> 
>  pbs-tape/src/bin/pmt.rs           |  5 +++--
>  pbs-tape/src/bin/pmtx.rs          |  5 +++--
>  proxmox-backup-client/src/main.rs |  6 ++++--
>  proxmox-file-restore/src/main.rs  |  7 +++++--
>  pxar-bin/src/main.rs              |  7 +++++--
>  src/bin/proxmox-backup-api.rs     |  6 ++++--
>  src/bin/proxmox-backup-debug.rs   |  6 ++++--
>  src/bin/proxmox-backup-manager.rs |  8 ++++++--
>  src/bin/proxmox-backup-proxy.rs   |  6 ++++--
>  src/bin/proxmox-daily-update.rs   | 13 ++++++-------
>  src/bin/proxmox-tape.rs           |  6 ++++--
>  src/bin/sg-tape-cmd.rs            |  5 +++--
>  12 files changed, 51 insertions(+), 29 deletions(-)
> 
> 
> proxmox-perl-rs:
> 
> Gabriel Goller (1):
>   log: use new logging builder, print to stderr and journald
> 
>  common/src/logger.rs | 7 ++++++-
>  pmg-rs/Cargo.toml    | 1 -
>  pmg-rs/src/lib.rs    | 2 +-
>  pve-rs/Cargo.toml    | 1 -
>  4 files changed, 7 insertions(+), 4 deletions(-)
> 
> 
> Summary over all repositories:
>   19 files changed, 267 insertions(+), 89 deletions(-)
> 
> -- 
> Generated by git-murpp 0.8.0
> 
> 
> _______________________________________________
> pbs-devel mailing list
> pbs-devel@lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
> 
> 


_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel