summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2021-05-27 12:06:21 +0200
committerSergei Golubchik <serg@mariadb.org>2021-05-27 17:36:32 +0200
commit1638241e313848e9999c529ac827d18afce3e2f0 (patch)
tree1eb1a9ee2fadfd79cfd6665417fd16165141a295
parentef0d883903166b7b8eaa51730662f2396ed4d88f (diff)
downloadmariadb-git-1638241e313848e9999c529ac827d18afce3e2f0.tar.gz
mtr: fix the debug printout
to print all arguments of _verbose(), not just the number of them
-rw-r--r--mysql-test/lib/My/SafeProcess.pm2
1 files changed, 1 insertions, 1 deletions
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";
}