]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak bat debug code
authorKern Sibbald <kern@sibbald.com>
Sun, 14 Feb 2010 17:23:56 +0000 (18:23 +0100)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:49:30 +0000 (16:49 +0200)
bacula/src/qt-console/mainwin.cpp
bacula/src/qt-console/restore/prerestore.cpp
bacula/src/qt-console/restore/restore.cpp

index ff92afaf26c98a01a21705e24a0574738ccddea0..6bb7519e59024c535e2fd01a02fa53f5ed24af22 100644 (file)
@@ -312,8 +312,7 @@ void MainWin::waitEnter()
       return;
    }
    m_waitState = true;
-   if (mainWin->m_connDebug)
-      Pmsg0(000, "Entering Wait State\n");
+   if (mainWin->m_connDebug) Pmsg0(000, "Entering Wait State\n");
    app->setOverrideCursor(QCursor(Qt::WaitCursor));
    disconnectSignals();
    disconnectConsoleSignals(m_currentConsole);
@@ -583,6 +582,7 @@ void MainWin::statusPageButtonClicked()
 void MainWin::restoreButtonClicked() 
 {
    new prerestorePage();
+   if (mainWin->m_miscDebug) Pmsg0(000, "in restoreButtonClicked after prerestorePage\n");
 }
 
 void MainWin::jobPlotButtonClicked()
index ef7baf588171e4b811a155d3f7e5d45be91ef9de..d09469d84f4abf1b9c1f27f72601c8ee048b0f69 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007-2009 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -122,6 +122,7 @@ void prerestorePage::buildPage()
    dockPage();
    setCurrent();
    this->show();
+   if (mainWin->m_miscDebug) Pmsg0(000, "Leave preRestore\n");
 }
 
 
@@ -168,6 +169,12 @@ void prerestorePage::okButtonPushed()
    if (mainWin->m_commandDebug) {
       Pmsg1(000, "preRestore command \'%s\'\n", cmd.toUtf8().data());
    }
+   /* 
+    * Send off command that looks something like:
+    *
+    * restore fileset="Full Set" client="timmy-fd" 
+    *        storage="File" current select
+    */
    m_console->write_dir(m_conn, cmd.toUtf8().data());
 
    /* Note, do not turn notifier back on here ... */
@@ -181,6 +188,7 @@ void prerestorePage::okButtonPushed()
       mainWin->resetFocus();
    }
    m_console->notify(m_conn, true);
+   if (mainWin->m_miscDebug) Pmsg0(000, "preRestore OK pressed\n");
 }
 
 
@@ -252,9 +260,8 @@ int prerestorePage::jobdefsFromJob(QStringList &fieldlist, QString &jobId)
       } /* foreach resultline */
    } /* if results from query */
 
-   /* FIXME This should not be getting more than one ever */
-   if(results.count() >= 1) return 1;
-   else return 0;
+   /* ***FIXME*** This should not ever be getting more than one */
+   return results.count() >= 1;
 }
 
 /*
@@ -353,8 +360,10 @@ void prerestorePage::jobRadioClicked(bool checked)
       selectJobRadio->setChecked(false);
       selectJobIdsRadio->setChecked(true);
    }
-   Dmsg2(200, "jobRadio=%d jobidsRadio=%d\n", selectJobRadio->isChecked(), 
+   if (mainWin->m_miscDebug) {
+      Pmsg2(000, "jobRadio=%d jobidsRadio=%d\n", selectJobRadio->isChecked(), 
          selectJobIdsRadio->isChecked());
+   }
 }
 
 void prerestorePage::jobidsRadioClicked(bool checked)
@@ -384,6 +393,8 @@ void prerestorePage::jobidsRadioClicked(bool checked)
       selectJobRadio->setChecked(true);
       selectJobIdsRadio->setChecked(false);
    }
-   Dmsg2(200, "jobRadio=%d jobidsRadio=%d\n", selectJobRadio->isChecked(), 
+   if (mainWin->m_miscDebug) {
+      Pmsg2(000, "jobRadio=%d jobidsRadio=%d\n", selectJobRadio->isChecked(), 
          selectJobIdsRadio->isChecked());
+   }
 }
index b820f6b642740e011b66f1b558d8c4a2e8525294..28fa4e64f8ad7741c4bb5d85532bed84f97ccec8 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007-2009 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -27,8 +27,6 @@
 */
  
 /*
- *   Version $Id$
- *
  *  Restore Class 
  *
  *   Kern Sibbald, February MMVII
@@ -89,6 +87,7 @@ restorePage::restorePage(int conn)
    dockPage();
    setCurrent();
    this->show();
+   if (mainWin->m_miscDebug) Pmsg0(000, "Leave restorePage\n");
 }
 
 restorePage::~restorePage()