From d02ea1c7f1223c20ec548d9c7410a2dd1edaf573 Mon Sep 17 00:00:00 2001 From: Johannes Schauer Marin Rodrigues Date: Mon, 23 Oct 2023 11:50:09 +0200 Subject: [PATCH] hooklistener: print errors as warning and not just as debug messages --- mmdebstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmdebstrap b/mmdebstrap index 0c7f6c4..d457c3a 100755 --- a/mmdebstrap +++ b/mmdebstrap @@ -4030,7 +4030,7 @@ sub hooklistener { } }; if ($@) { - debug("hooklistener errored out: $@"); + warning("hooklistener errored out: $@"); # inform the other side that something went wrong print STDOUT (pack("n", 0) . "error") or error "cannot write to socket: $!";