Kern,

Can you please consider the following patch, or something similar. Maybe
at a high debug level?

It was very useful when I wanted to know if the file was in the hash
table or not.

James


Index: src/filed/accurate.c
===================================================================
--- src/filed/accurate.c        (revision 8635)
+++ src/filed/accurate.c        (working copy)
@@ -52,6 +52,9 @@
    CurFile *temp = (CurFile *)jcr->file_list->lookup(fname);
    if (temp) {
       temp->seen = 1;              /* records are in memory */
+      Dmsg1(dbglvl, "marked <%s> as seen\n", fname);
+   } else {
+      Dmsg1(dbglvl, "<%s> not found to be marked as seen\n", fname);
    }
    return true;
 }

------------------------------------------------------------------------------
_______________________________________________
Bacula-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bacula-devel

Reply via email to