]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak dbglevel
authorKern Sibbald <kern@sibbald.com>
Tue, 23 Dec 2008 11:45:23 +0000 (11:45 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 23 Dec 2008 11:45:23 +0000 (11:45 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8233 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/stored/match_bsr.c

index 5b52d918ae2119270a35660c2307d1bde4960888..db0ef9d95972c35afab01954c9941890e011f8ce 100644 (file)
@@ -499,10 +499,10 @@ no_match:
       return match_all(bsr->next, rec, volrec, sessrec, bsr->done && done, jcr);
    }
    if (bsr->done && done) {
-      Dmsg0(050, "Leave match all -1\n");
+      Dmsg0(dbglevel, "Leave match all -1\n");
       return -1;
    }
-   Dmsg0(050, "Leave match all 0\n");
+   Dmsg0(dbglevel, "Leave match all 0\n");
    return 0;
 }
 
@@ -512,7 +512,7 @@ static int match_volume(BSR *bsr, BSR_VOLUME *volume, VOLUME_LABEL *volrec, bool
       return 0;                       /* Volume must match */
    }
    if (strcmp(volume->VolumeName, volrec->VolumeName) == 0) {
-      Dmsg1(050, "match_volume=%s\n", volrec->VolumeName);
+      Dmsg1(dbglevel, "match_volume=%s\n", volrec->VolumeName);
       return 1;
    }
    if (volume->next) {