From 1638241e313848e9999c529ac827d18afce3e2f0 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 27 May 2021 12:06:21 +0200 Subject: [PATCH] mtr: fix the debug printout to print all arguments of _verbose(), not just the number of them --- mysql-test/lib/My/SafeProcess.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/lib/My/SafeProcess.pm b/mysql-test/lib/My/SafeProcess.pm index 87054019759..4f7464daf44 100644 --- a/mysql-test/lib/My/SafeProcess.pm +++ b/mysql-test/lib/My/SafeProcess.pm @@ -628,7 +628,7 @@ sub self2str { sub _verbose { return unless $_verbose; - print STDERR " ## ". @_. "\n"; + print STDERR " ## @_\n"; }