Projet

Général

Profil

Révision e081f04a

Voir les différences:

tools.cpp
59 59

  
60 60
void tools::ftpCommandFinished(int commandId, bool error)
61 61
{
62
    qDebug() << "ftpCommandFinished";
63
    if(error)
64
        qDebug() << "ftpCommandFinished ERROR : " << commandId << "(" << QFtp::Put << ") : " << m_ftp->currentCommand();
62
//    qDebug() << "ftpCommandFinished";
63
    if(error) {
64
        qDebug() << "ftpCommandFinished ERROR : " << commandId << " " << m_ftp->errorString();
65

  
66
    }
65 67
    //setCursor(Qt::ArrowCursor);
66 68

  
67 69
    if (m_ftp->currentCommand() == QFtp::ConnectToHost) {
......
74 76
    }
75 77

  
76 78
    if (m_ftp->currentCommand() == QFtp::Put) {
77
        qDebug() << "Put ...";
79
//        qDebug() << "Put ...";
78 80
    }
79 81

  
80 82
    if (m_ftp->currentCommand() == QFtp::Get) {
......
88 90

  
89 91
    //on passe au suivant
90 92
    if(m_currentFTPFileUpload >= 0 && m_fileListToUploadIndex.count() > 0) {
91
        qDebug() << "Il en reste encore a envoyer ";
93
//        qDebug() << "Il en reste encore a envoyer ";
92 94
        if(m_typeUploadRecursif == "PHP")
93 95
            uploadRecursifPHP(m_destDirBase);
94 96
        else

Formats disponibles : Unified diff

Redmine Appliance - Powered by TurnKey Linux