From 49ae46d51d6e545ee380d35b6cdd1e3ce4b64ca8 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Thu, 28 Apr 2016 12:48:58 +0200 Subject: [PATCH] btrbk: do not print headers to transaction_log, these are documented in btrbk.conf(5) --- ChangeLog | 1 + btrbk | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a35d259..6a1c8ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ btrbk-current * Bugfix: set correct parent section when propagating targets (close: #85). * Add syslog output of transaction log (close #82). + * Do not print headers to transaction log anymore. btrbk-0.23.0 diff --git a/btrbk b/btrbk index 268cadc..b658e21 100755 --- a/btrbk +++ b/btrbk @@ -334,8 +334,8 @@ sub init_transaction_log($$) my $config_syslog_facility = shift; if(defined($file) && (not $dryrun)) { if(open($tlog_fh, ">> $file")) { - # print headers - print_formatted("transaction", [ ], output_format => "tlog", outfile => $tlog_fh); + # print headers (disabled) + # print_formatted("transaction", [ ], output_format => "tlog", outfile => $tlog_fh); INFO "Using transaction log: $file"; } else { $tlog_fh = undef;