Skip to content
Snippets Groups Projects
Commit a899654e authored by Christian Kandeler's avatar Christian Kandeler
Browse files

SSH: Add debug message.


Change-Id: I246ae125285da6c5be8e2acbe8547270a185d298
Reviewed-by: default avatarChristian Kandeler <christian.kandeler@nokia.com>
parent fd367ec8
No related branches found
No related tags found
No related merge requests found
...@@ -332,6 +332,10 @@ void SshConnectionPrivate::handleIncomingData() ...@@ -332,6 +332,10 @@ void SshConnectionPrivate::handleIncomingData()
void SshConnectionPrivate::handleServerId() void SshConnectionPrivate::handleServerId()
{ {
#ifdef CREATOR_SSH_DEBUG
qDebug("%s: incoming data size = %d, incoming data = '%s'",
Q_FUNC_INFO, m_incomingData.count(), m_incomingData.data());
#endif
const int idOffset = m_incomingData.indexOf("SSH-"); const int idOffset = m_incomingData.indexOf("SSH-");
if (idOffset == -1) if (idOffset == -1)
return; return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment