aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-03-17 10:50:16 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-03-18 08:55:42 +0000
commit7c39617324543289e20ae1e203929c11721c3517 (patch)
tree7fff44cfcc941234f6f946a7cb1c8ffb8ddb8a85
parent481df466e273f01afd0eee873ae1b8e1907a87c4 (diff)
Make the setup info visually more noticeable
By adding two leading newlines we separate it nicely from the other part of the test log. Amends 66c5b1e11e1f80c4113bea940302ea79926a0c13 Change-Id: Ic260cdc4cc2421ddb04bc5027082521800b268e8 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
-rw-r--r--src/libs/ssh/sshconnection.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/ssh/sshconnection.cpp b/src/libs/ssh/sshconnection.cpp
index 839ee2d543..0e1e62cad1 100644
--- a/src/libs/ssh/sshconnection.cpp
+++ b/src/libs/ssh/sshconnection.cpp
@@ -478,7 +478,8 @@ bool checkParameters(const QSsh::SshConnectionParameters &params)
void printSetupHelp()
{
- qInfo() << "In order to run this test properly it requires some setup (example for fedora):\n"
+ qInfo() << "\n\n"
+ "In order to run this test properly it requires some setup (example for fedora):\n"
"1. Run a server on the host to connect to:\n"
" systemctl start sshd\n"
"2. Create your own ssh key (needed only once). For fedora it needs ecdsa type:\n"