]> git.sur5r.net Git - bacula/bacula/commitdiff
Final changes
authorKern Sibbald <kern@sibbald.com>
Sat, 20 Nov 2004 08:00:39 +0000 (08:00 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Nov 2004 08:00:39 +0000 (08:00 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1709 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/lib/btimers.c

index d9acb56996476b3deccf35e1ac3532bfa7f6c226..7d1a0de59baa23bde21074632003d7a35a22b9ea 100644 (file)
@@ -165,7 +165,7 @@ btimer_t *start_bsock_timer(BSOCK *bsock, uint32_t wait)
    wid->wd->interval = wait;
    register_watchdog(wid->wd);
 
-   Dmsg3(200, "Start thread timer %p tip %p for %d secs.\n", wid, wid->tid, wait);
+   Dmsg3(50, "Start thread timer %p tip %p for %d secs.\n", wid, wid->tid, wait);
 
    return wid;
 }
@@ -179,7 +179,7 @@ void stop_bsock_timer(btimer_t *wid)
       Dmsg0(200, "stop_bsock_timer called with NULL btimer_id\n");
       return;
    }
-   Dmsg2(200, "Stop bsock timer %p tid %p.\n", wid, wid->tid);
+   Dmsg2(50, "Stop bsock timer %p tid %p.\n", wid, wid->tid);
    stop_btimer(wid);
 }
 
@@ -210,10 +210,10 @@ static void callback_thread_timer(watchdog_t *self)
 {
    btimer_t *wid = (btimer_t *)self->data;
 
-   Dmsg2(200, "watchdog %p kill thread %d\n", self, wid->tid);
+   Dmsg2(50, "watchdog %p kill thread %d\n", self, wid->tid);
 
    if (wid->type == TYPE_BSOCK && wid->bsock) {
-      Dmsg0(200, "kill type bsock ...\n");
+      Dmsg0(50, "kill type bsock ...\n");
       wid->bsock->timed_out = true;
    }
    pthread_kill(wid->tid, TIMEOUT_SIGNAL);